[OpenACC] Implement 'collapse' for combined constructs.
[llvm-project.git] / llvm / test / ExecutionEngine / OrcLazy / global_aliases.ll
blob0dbe24007628b661ec40e3551867ecac4b90c882
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, ptr @x
8 define i32 @foo() {
9 entry:
10   %0 = load i32, ptr @y, align 4
11   ret i32 %0
14 @bar = alias i32(), ptr @foo
16 define i32 @main(i32 %argc, ptr %argv) {
17 entry:
18   %0 = call i32() @bar()
19   %1 = sub i32 %0, 42
20   ret i32 %1