mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
890a876e0e
This gets gas and llc -filetype=obj to agree on the order of prefixes. For llvm-mc we need to fix the asm parser to know that it makes a difference on which line the "lock" is in. Part of pr23594. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@238232 91177308-0d34-0410-b5e6-96231b3b80d8
22 lines
559 B
LLVM
22 lines
559 B
LLVM
; RUN: llc < %s -mtriple=i386-apple-darwin -mcpu=corei7 | FileCheck %s
|
|
; rdar://r7512579
|
|
|
|
; PHI defs in the atomic loop should be used by the add / adc
|
|
; instructions. They should not be dead.
|
|
|
|
define void @t(i64* nocapture %p) nounwind ssp {
|
|
entry:
|
|
; CHECK-LABEL: t:
|
|
; CHECK: movl ([[REG:%[a-z]+]]), %eax
|
|
; CHECK: movl 4([[REG]]), %edx
|
|
; CHECK: LBB0_1:
|
|
; CHECK: movl %eax, %ebx
|
|
; CHECK: addl $1, %ebx
|
|
; CHECK: movl %edx, %ecx
|
|
; CHECK: adcl $0, %ecx
|
|
; CHECK: lock cmpxchg8b ([[REG]])
|
|
; CHECK-NEXT: jne
|
|
%0 = atomicrmw add i64* %p, i64 1 seq_cst
|
|
ret void
|
|
}
|