diff options
| author | Dan Gohman <gohman@apple.com> | 2009-04-15 19:48:57 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2009-04-15 19:48:57 +0000 |
| commit | de7b3e74bee2318d4008959f974ccb992d3eb5d9 (patch) | |
| tree | 87fd8b74b7147e642a1639fc7a9ba2fac9d279fe /llvm/lib | |
| parent | 6711216e84b9f8e9ee41c7d54a432e2603389fc1 (diff) | |
| download | bcm5719-llvm-de7b3e74bee2318d4008959f974ccb992d3eb5d9.tar.gz bcm5719-llvm-de7b3e74bee2318d4008959f974ccb992d3eb5d9.zip | |
Fix 80-column violations.
llvm-svn: 69204
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Target/X86/X86InstrInfo.cpp | 4 | ||||
| -rw-r--r-- | llvm/lib/Target/X86/X86InstrInfo.td | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/llvm/lib/Target/X86/X86InstrInfo.cpp b/llvm/lib/Target/X86/X86InstrInfo.cpp index d64466e8e0e..e123ae7e24a 100644 --- a/llvm/lib/Target/X86/X86InstrInfo.cpp +++ b/llvm/lib/Target/X86/X86InstrInfo.cpp @@ -1664,8 +1664,8 @@ bool X86InstrInfo::copyRegToReg(MachineBasicBlock &MBB, } else if (DestRC == &X86::GR16RegClass) { Opc = X86::MOV16rr; } else if (DestRC == &X86::GR8RegClass) { - // Copying two or from a physical H register requires a NOREX move. Otherwise - // use a normal move. + // Copying two or from a physical H register requires a NOREX move. + // Otherwise use a normal move. if (isHReg(DestReg) || isHReg(SrcReg)) Opc = X86::MOV8rr_NOREX; else diff --git a/llvm/lib/Target/X86/X86InstrInfo.td b/llvm/lib/Target/X86/X86InstrInfo.td index 4fd3320090b..343691188b1 100644 --- a/llvm/lib/Target/X86/X86InstrInfo.td +++ b/llvm/lib/Target/X86/X86InstrInfo.td @@ -787,7 +787,8 @@ def MOV32mr : I<0x89, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src), // can be used for copying and storing h registers, which can't be encoded when // a REX prefix is present. let neverHasSideEffects = 1 in -def MOV8rr_NOREX : I<0x88, MRMDestReg, (outs GR8_NOREX:$dst), (ins GR8_NOREX:$src), +def MOV8rr_NOREX : I<0x88, MRMDestReg, + (outs GR8_NOREX:$dst), (ins GR8_NOREX:$src), "mov{b}\t{$src, $dst|$dst, $src} # NOREX", []>; def MOV8mr_NOREX : I<0x88, MRMDestMem, (outs), (ins i8mem_NOREX:$dst, GR8_NOREX:$src), |

