Fix whitespace.
authorNAKAMURA Takumi <geek4civic@gmail.com>
Sun, 27 Mar 2011 01:44:40 +0000 (01:44 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Sun, 27 Mar 2011 01:44:40 +0000 (01:44 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@128370 91177308-0d34-0410-b5e6-96231b3b80d8

lib/MC/MCAsmStreamer.cpp

index c7ecf53c7f39b3d253906b2b3a1e4d0fa3cbb909..c0fcce743567b2823f9510febbcbd7e1abf433e5 100644 (file)
@@ -844,13 +844,13 @@ void MCAsmStreamer::AddEncodingComment(const MCInst &Inst) {
       OS << "0b";
       for (unsigned j = 8; j--;) {
         unsigned Bit = (Code[i] >> j) & 1;
-        
+
         unsigned FixupBit;
         if (getContext().getTargetAsmInfo().isLittleEndian())
           FixupBit = i * 8 + j;
         else
           FixupBit = i * 8 + (7-j);
-        
+
         if (uint8_t MapEntry = FixupMap[FixupBit]) {
           assert(Bit == 0 && "Encoder wrote into fixed up bit!");
           OS << char('A' + MapEntry - 1);