[rtsan] Add fork/execve interceptors (#117198)
[llvm-project.git] / llvm / test / Transforms / ConstantHoisting / AArch64 / const-addr.ll
blob965d96ad1ea3898eafb8bc42f2ee879393197827
1 ; RUN: opt -mtriple=arm64-darwin-unknown -S -passes=consthoist < %s | FileCheck %s
3 %T = type { i32, i32, i32, i32 }
5 define i32 @test1() nounwind {
6 ; CHECK-LABEL: test1
7 ; CHECK: %const = bitcast i64 68141056 to i64
8 ; CHECK: %1 = inttoptr i64 %const to ptr
9 ; CHECK: %o1 = getelementptr %T, ptr %1, i32 0, i32 1
10 ; CHECK: %o2 = getelementptr %T, ptr %1, i32 0, i32 2
11 ; CHECK: %o3 = getelementptr %T, ptr %1, i32 0, i32 3
12   %at = inttoptr i64 68141056 to ptr
13   %o1 = getelementptr %T, ptr %at, i32 0, i32 1
14   %t1 = load i32, ptr %o1
15   %o2 = getelementptr %T, ptr %at, i32 0, i32 2
16   %t2 = load i32, ptr %o2
17   %a1 = add i32 %t1, %t2
18   %o3 = getelementptr %T, ptr %at, i32 0, i32 3
19   %t3 = load i32, ptr %o3
20   %a2 = add i32 %a1, %t3
21   ret i32 %a2