llvm-6502/test/CodeGen/X86/dll-linkage.ll
2009-07-09 00:53:44 +00:00

10 lines
184 B
LLVM

; RUN: llvm-as < %s | llc -mtriple=i386-mingw-pc | FileCheck %s
declare dllimport void @foo()
define void @bar() nounwind {
; CHECK: call *__imp__foo
call void @foo()
ret void
}