Implement mulo x, 2 -> addo x, x in DAGCombiner.
[oota-llvm.git] / test / CodeGen / X86 / dll-linkage.ll
index 913617585206b5c0261dcfa67195581626dac7a6..a0c2a54a99a468a841325edaa92e51296d2ec86a 100644 (file)
@@ -1,9 +1,14 @@
 ; RUN: llc < %s -mtriple=i386-pc-mingw32 | FileCheck %s
 
+; RUN: llc < %s -mtriple=i386-pc-mingw32 -O0 | FileCheck %s -check-prefix=FAST
+; PR6275
+
 declare dllimport void @foo()
 
 define void @bar() nounwind {
 ; CHECK: calll *__imp__foo
+; FAST:  movl   __imp__foo, [[R:%[a-z]{3}]]
+; FAST:  calll  *[[R]]
   call void @foo()
   ret void
 }