blob: a6b3073e414637684614e087a49e0ab11aba5539 [file] [log] [blame]
; RUN: llvm-as < %s | llc -mtriple=i386-pc-mingw32 | FileCheck %s
declare dllimport void @foo()
define void @bar() nounwind {
; CHECK: call *__imp__foo
call void @foo()
ret void
}