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