[ARM] Adjust how NEON shifts are lowered
[llvm-core.git] / test / Transforms / ConstantHoisting / AArch64 / const-addr.ll
blob4c36d20dc6b0ec539c6f3b97e0484964ad33d93b
1 ; RUN: opt -mtriple=arm64-darwin-unknown -S -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 %T*
9 ; CHECK: %o1 = getelementptr %T, %T* %1, i32 0, i32 1
10 ; CHECK: %o2 = getelementptr %T, %T* %1, i32 0, i32 2
11 ; CHECK: %o3 = getelementptr %T, %T* %1, i32 0, i32 3
12   %at = inttoptr i64 68141056 to %T*
13   %o1 = getelementptr %T, %T* %at, i32 0, i32 1
14   %t1 = load i32, i32* %o1
15   %o2 = getelementptr %T, %T* %at, i32 0, i32 2
16   %t2 = load i32, i32* %o2
17   %a1 = add i32 %t1, %t2
18   %o3 = getelementptr %T, %T* %at, i32 0, i32 3
19   %t3 = load i32, i32* %o3
20   %a2 = add i32 %a1, %t3
21   ret i32 %a2