2009-09-08 23:54:48 +00:00
|
|
|
; RUN: llc < %s -mtriple=i386-pc-mingw32 | FileCheck %s
|
2009-07-09 00:53:44 +00:00
|
|
|
|
|
|
|
declare dllimport void @foo()
|
|
|
|
|
|
|
|
define void @bar() nounwind {
|
2010-09-22 05:49:14 +00:00
|
|
|
; CHECK: calll *__imp__foo
|
2009-07-09 00:53:44 +00:00
|
|
|
call void @foo()
|
|
|
|
ret void
|
|
|
|
}
|