blob: b20e60460c31d05721b65f331b8210159728e779 [file] [log] [blame]
; 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
}