Inline asm mult-alt constraint tests.
[oota-llvm.git] / test / CodeGen / X86 / dll-linkage.ll
1 ; RUN: llc < %s -mtriple=i386-pc-mingw32 | FileCheck %s
2
3 declare dllimport void @foo()
4
5 define void @bar() nounwind {
6 ; CHECK: calll  *__imp__foo
7   call void @foo()
8   ret void
9 }