[ARM] Rewrite how VCMP are lowered, using a single node
[llvm-core.git] / test / ExecutionEngine / OrcLazy / global_aliases.ll
blob61fde4bebf8b2859ef189c481e3a1e1676006a83
1 ; RUN: lli -jit-kind=orc-lazy %s
3 ; Test handling of global aliases for function and variables.
5 @x = global i32 42, align 4
6 @y = alias i32, i32* @x
8 define i32 @foo() {
9 entry:
10   %0 = load i32, i32* @y, align 4
11   ret i32 %0
14 @bar = alias i32(), i32()* @foo
16 define i32 @main(i32 %argc, i8** %argv) {
17 entry:
18   %0 = call i32() @bar()
19   %1 = sub i32 %0, 42
20   ret i32 %1