blob: b20e60460c31d05721b65f331b8210159728e779 [file] [log] [blame]
Chris Lattnerc7292e42009-07-09 00:53:44 +00001; RUN: llvm-as < %s | llc -mtriple=i386-mingw-pc | FileCheck %s
2
3declare dllimport void @foo()
4
5define void @bar() nounwind {
6; CHECK: call *__imp__foo
7 call void @foo()
8 ret void
9}