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