[llvm-commits] [llvm] r139278 - /llvm/trunk/utils/TableGen/FixedLenDecoderEmitter.cpp

Andrew Trick atrick at apple.com
Wed Sep 7 22:23:15 PDT 2011


Author: atrick
Date: Thu Sep  8 00:23:14 2011
New Revision: 139278

URL: http://llvm.org/viewvc/llvm-project?rev=139278&view=rev
Log:
whitespace

Modified:
    llvm/trunk/utils/TableGen/FixedLenDecoderEmitter.cpp

Modified: llvm/trunk/utils/TableGen/FixedLenDecoderEmitter.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/TableGen/FixedLenDecoderEmitter.cpp?rev=139278&r1=139277&r2=139278&view=diff
==============================================================================
--- llvm/trunk/utils/TableGen/FixedLenDecoderEmitter.cpp (original)
+++ llvm/trunk/utils/TableGen/FixedLenDecoderEmitter.cpp Thu Sep  8 00:23:14 2011
@@ -749,7 +749,7 @@
     for (OperandInfo::iterator OI = OpInfo.begin(), OE = OpInfo.end();
          OI != OE; ++OI) {
       o.indent(Indentation) << "  tmp |= (fieldFromInstruction" << BitWidth
-                            << "(insn, " << OI->Base << ", " << OI->Width 
+                            << "(insn, " << OI->Base << ", " << OI->Width
                             << ") << " << OI->Offset << ");\n";
     }
   }
@@ -797,7 +797,7 @@
     emitSinglePredicateMatch(o, pairs.first, Emitter->PredicateNamespace);
   }
   return Predicates->getSize() > 0;
-}  
+}
 
 // Emits code to decode the singleton.  Return true if we have matched all the
 // well-known bits.





More information about the llvm-commits mailing list