blob: 14290f864c2b1d63c69e8d25fd766976e0f10521 [file] [log] [blame]
Chris Lattner118987f2009-08-12 06:29:18 +00001; RUN: llvm-as < %s | llc -mtriple=i386-mingw32-pc | FileCheck %s
Chris Lattnerf4a97742009-07-09 00:53:44 +00002
3declare dllimport void @foo()
4
5define void @bar() nounwind {
6; CHECK: call *__imp__foo
7 call void @foo()
8 ret void
9}