summaryrefslogtreecommitdiff
path: root/test/CodeGen/AArch64/store_merge_pair_offset.ll
blob: a091f0fd911c6d64ba7dba7c6b4de5009da4f29e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; RUN: llc -mtriple=aarch64-linux-gnu -aarch64-enable-atomic-cfg-tidy=0 -disable-lsr -verify-machineinstrs -enable-misched=false -enable-post-misched=false -o - %s | FileCheck %s

define i64 @test(i64* %a) nounwind {
  ; CHECK: ldp	x{{[0-9]+}}, x{{[0-9]+}}
  ; CHECK-NOT: ldr
  %p1 = getelementptr inbounds i64, i64* %a, i32 64
  %tmp1 = load i64, i64* %p1, align 2
  %p2 = getelementptr inbounds i64, i64* %a, i32 63
  %tmp2 = load i64, i64* %p2, align 2
  %tmp3 = add i64 %tmp1, %tmp2
  ret i64 %tmp3
}