blob: a6b3073e414637684614e087a49e0ab11aba5539 [file] [log] [blame]
Chris Lattner9249a922009-08-12 06:36:52 +00001; RUN: llvm-as < %s | llc -mtriple=i386-pc-mingw32 | 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}