aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/PowerPC/atomics-constant.ll
blob: 836b141102f87940b49308a20cdd8ca8e3b8e764 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc < %s | FileCheck %s

target triple = "powerpc64le-unknown-linux-gnu"

@a = dso_local global i64 zeroinitializer

define i64 @foo() {
; CHECK-LABEL: foo:
; CHECK:       # %bb.0: # %entry
; CHECK-NEXT:    addis 3, 2, a@toc@ha
; CHECK-NEXT:    ld 3, a@toc@l(3)
; CHECK-NEXT:    cmpd 7, 3, 3
; CHECK-NEXT:    bne- 7, .+4
; CHECK-NEXT:    isync
; CHECK-NEXT:    blr
entry:
  %value = load atomic i64, ptr @a acquire, align 8
  ret i64 %value
}