repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git]
/
llvm
/
test
/
ExecutionEngine
/
Interpreter
/
alias.ll
blob
36e74f0a46a12fe1a4557f50270d8b25cf4ee20f
1
; RUN: %lli -jit-kind=mcjit -force-interpreter %s
2
3
define i32 @func() {
4
entry:
5
ret i32 0
6
}
7
8
@alias = alias i32 (), i32 ()* @func
9
10
define i32 @main() {
11
entry:
12
%call = call i32 @alias()
13
ret i32 %call
14
}