summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/pr14314.ll
blob: 5388a4b01b6563ec7336cc6194bfd282471672d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; RUN: llc < %s -mtriple=i386-pc-linux -mcpu=corei7 | FileCheck %s

define i64 @atomicSub(i64* %a, i64 %b) nounwind {
entry:
  %0 = atomicrmw sub i64* %a, i64 %b seq_cst
  ret i64 %0
; CHECK: atomicSub
; movl %eax, %ebx
; subl {{%[a-z]+}}, %ebx
; movl %edx, %ecx
; sbbl {{%[a-z]+}}, %ecx
; CHECK: ret
}