repo.or.cz
/
llvm
/
zpu.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixed some bugs in register stack pass.
[llvm/zpu.git]
/
test
/
CodeGen
/
X86
/
dll-linkage.ll
blob
913617585206b5c0261dcfa67195581626dac7a6
1
; RUN: llc < %s -mtriple=i386-pc-mingw32 | FileCheck %s
2
3
declare dllimport void @foo()
4
5
define void @bar() nounwind {
6
; CHECK: calll *__imp__foo
7
call void @foo()
8
ret void
9
}