diff options
| author | Evan Cheng <evan.cheng@apple.com> | 2008-03-04 03:20:06 +0000 |
|---|---|---|
| committer | Evan Cheng <evan.cheng@apple.com> | 2008-03-04 03:20:06 +0000 |
| commit | 59d58ab8c43ba8fe17ba052f550fc9d9ecfe9a18 (patch) | |
| tree | fee283518c86ab7e008ceb18a3040d1fecd123bd /llvm | |
| parent | b9bd5a879db8951d08cc5d2f04127ad93c8de20c (diff) | |
| download | bcm5719-llvm-59d58ab8c43ba8fe17ba052f550fc9d9ecfe9a18.tar.gz bcm5719-llvm-59d58ab8c43ba8fe17ba052f550fc9d9ecfe9a18.zip | |
80 column violations.
llvm-svn: 47878
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/lib/Target/X86/X86InstrInfo.td | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/llvm/lib/Target/X86/X86InstrInfo.td b/llvm/lib/Target/X86/X86InstrInfo.td index e2e2fb80978..b62171f5585 100644 --- a/llvm/lib/Target/X86/X86InstrInfo.td +++ b/llvm/lib/Target/X86/X86InstrInfo.td @@ -2553,20 +2553,23 @@ let Defs = [EAX, EFLAGS], Uses = [EAX] in { def CMPXCHG32 : I<0xB1, Pseudo, (outs), (ins i32mem:$ptr, GR32:$swap), "cmpxchgl $swap,$ptr", []>, TB; def LCMPXCHG32 : I<0xB1, Pseudo, (outs), (ins i32mem:$ptr, GR32:$swap), - "lock cmpxchgl $swap,$ptr", [(X86cas addr:$ptr, GR32:$swap, 4)]>, TB, LOCK; + "lock cmpxchgl $swap,$ptr", + [(X86cas addr:$ptr, GR32:$swap, 4)]>, TB, LOCK; } let Defs = [AX, EFLAGS], Uses = [AX] in { def CMPXCHG16 : I<0xB1, Pseudo, (outs), (ins i16mem:$ptr, GR16:$swap), "cmpxchgw $swap,($ptr)", []>, TB, OpSize; def LCMPXCHG16 : I<0xB1, Pseudo, (outs), (ins i16mem:$ptr, GR16:$swap), - "lock cmpxchgw $swap,$ptr", [(X86cas addr:$ptr, GR16:$swap, 2)]>, TB, OpSize, LOCK; + "lock cmpxchgw $swap,$ptr", + [(X86cas addr:$ptr, GR16:$swap, 2)]>, TB, OpSize, LOCK; } let Defs = [AL, EFLAGS], Uses = [AL] in { def CMPXCHG8 : I<0xB0, Pseudo, (outs), (ins i8mem:$ptr, GR8:$swap), "cmpxchgb $swap,($ptr)", []>, TB; def LCMPXCHG8 : I<0xB0, Pseudo, (outs), (ins i8mem:$ptr, GR8:$swap), - "lock cmpxchgb $swap,$ptr", [(X86cas addr:$ptr, GR8:$swap, 1)]>, TB, LOCK; + "lock cmpxchgb $swap,$ptr", + [(X86cas addr:$ptr, GR8:$swap, 1)]>, TB, LOCK; } let Constraints = "$val = $dst", Defs = [EFLAGS] in { |

