[llvm-exegesis][NFC] Improve parsing of the YAML files
[llvm-core.git] / test / ExecutionEngine / Interpreter / alias.ll
blob4bfdd2ce06027d2bd0beb14ccd1245d09deea2a1
1 ; RUN: %lli -force-interpreter %s
3 define i32 @func() {
4 entry:
5   ret i32 0
8 @alias = alias i32 (), i32 ()* @func
10 define i32 @main() {
11 entry:
12   %call = call i32 @alias()
13   ret i32 %call