whitespace
authorAndrew Trick <atrick@apple.com>
Thu, 8 Sep 2011 05:23:14 +0000 (05:23 +0000)
committerAndrew Trick <atrick@apple.com>
Thu, 8 Sep 2011 05:23:14 +0000 (05:23 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139278 91177308-0d34-0410-b5e6-96231b3b80d8

utils/TableGen/FixedLenDecoderEmitter.cpp

index 27a5587031c89c6c861d14b7f3eebfb532e49455..c0b51385b1a68cc50ce5795d71989e428aea4d67 100644 (file)
@@ -749,7 +749,7 @@ void FilterChooser::emitBinaryParser(raw_ostream &o, unsigned &Indentation,
     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 @@ bool FilterChooser::emitPredicateMatch(raw_ostream &o, unsigned &Indentation,
     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.