Fix 80-column violations.
authorDan Gohman <gohman@apple.com>
Wed, 15 Apr 2009 19:48:57 +0000 (19:48 +0000)
committerDan Gohman <gohman@apple.com>
Wed, 15 Apr 2009 19:48:57 +0000 (19:48 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@69204 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86InstrInfo.cpp
lib/Target/X86/X86InstrInfo.td

index d64466e8e0e34e98ace5d2f49dc75edc232d6cff..e123ae7e24acc2920adb98657fe39b0878b72016 100644 (file)
@@ -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
index 4fd3320090b02f16ee24dcca1a4556e5b7b004bf..343691188b1d61c507b110101f0080dd1240855a 100644 (file)
@@ -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),