Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / CodeGen / AArch64 / arm64-const-addr.ll
blob79807730746bc3347d4b24c592fcea610c6cff93
1 ; RUN: llc -mtriple=arm64-darwin-unknown < %s | FileCheck %s
3 %T = type { i32, i32, i32, i32 }
5 ; Test if the constant base address gets only materialized once.
6 define i32 @test1() nounwind {
7 ; CHECK-LABEL:  test1
8 ; CHECK:        mov  w8, #49152
9 ; CHECK-NEXT:   movk  w8, #1039, lsl #16
10 ; CHECK-NEXT:   ldp w9, w10, [x8, #4]
11 ; CHECK:        ldr w8, [x8, #12]
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