Fix whitespace.
authorBob Wilson <bob.wilson@apple.com>
Tue, 7 Dec 2010 01:12:19 +0000 (01:12 +0000)
committerBob Wilson <bob.wilson@apple.com>
Tue, 7 Dec 2010 01:12:19 +0000 (01:12 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121086 91177308-0d34-0410-b5e6-96231b3b80d8

utils/TableGen/NeonEmitter.cpp

index 1dd9e695be480968cba4d2772ae0f5b6891341d9..5f73d00898b4c89ffee924e7867e29880e4b2868 100644 (file)
@@ -1143,12 +1143,12 @@ void NeonEmitter::runHeader(raw_ostream &OS) {
     }
     if (mask)
       OS << "case ARM::BI__builtin_neon_"
-      << MangleName(name, TypeVec[si], ClassB)
-      << ": mask = " << "0x" << utohexstr(mask) << "; break;\n";
+         << MangleName(name, TypeVec[si], ClassB)
+         << ": mask = " << "0x" << utohexstr(mask) << "; break;\n";
     if (qmask)
       OS << "case ARM::BI__builtin_neon_"
-      << MangleName(name, TypeVec[qi], ClassB)
-      << ": mask = " << "0x" << utohexstr(qmask) << "; break;\n";
+         << MangleName(name, TypeVec[qi], ClassB)
+         << ": mask = " << "0x" << utohexstr(qmask) << "; break;\n";
   }
   OS << "#endif\n\n";
 
@@ -1226,7 +1226,7 @@ void NeonEmitter::runHeader(raw_ostream &OS) {
           case 'i': ie = ii + 1; break;
         }
       }
-      OS << "case ARM::BI__builtin_neon_"  << MangleName(name, TypeVec[ti], ck)
+      OS << "case ARM::BI__builtin_neon_" << MangleName(name, TypeVec[ti], ck)
          << ": i = " << immidx << "; " << rangestr << "; break;\n";
     }
   }