[llvm-commits] [llvm] r69204 - in /llvm/trunk/lib/Target/X86: X86InstrInfo.cpp X86InstrInfo.td

Dan Gohman gohman at apple.com
Wed Apr 15 12:48:58 PDT 2009


Author: djg
Date: Wed Apr 15 14:48:57 2009
New Revision: 69204

URL: http://llvm.org/viewvc/llvm-project?rev=69204&view=rev
Log:
Fix 80-column violations.

Modified:
    llvm/trunk/lib/Target/X86/X86InstrInfo.cpp
    llvm/trunk/lib/Target/X86/X86InstrInfo.td

Modified: llvm/trunk/lib/Target/X86/X86InstrInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86InstrInfo.cpp?rev=69204&r1=69203&r2=69204&view=diff

==============================================================================
--- llvm/trunk/lib/Target/X86/X86InstrInfo.cpp (original)
+++ llvm/trunk/lib/Target/X86/X86InstrInfo.cpp Wed Apr 15 14:48:57 2009
@@ -1664,8 +1664,8 @@
     } 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

Modified: llvm/trunk/lib/Target/X86/X86InstrInfo.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86InstrInfo.td?rev=69204&r1=69203&r2=69204&view=diff

==============================================================================
--- llvm/trunk/lib/Target/X86/X86InstrInfo.td (original)
+++ llvm/trunk/lib/Target/X86/X86InstrInfo.td Wed Apr 15 14:48:57 2009
@@ -787,7 +787,8 @@
 // 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),





More information about the llvm-commits mailing list