1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 04:02:41 +01:00
llvm-mirror/test/ExecutionEngine/Interpreter/alias.ll
2018-05-24 19:07:34 +00:00

15 lines
190 B
LLVM

; RUN: %lli -force-interpreter %s
define i32 @func() {
entry:
ret i32 0
}
@alias = alias i32 (), i32 ()* @func
define i32 @main() {
entry:
%call = call i32 @alias()
ret i32 %call
}