Fix indentation.

llvm-svn: 202344
This commit is contained in:
Craig Topper 2014-02-27 03:30:36 +00:00
parent cc5e2404fb
commit 8b88da45da
1 changed files with 1 additions and 1 deletions

View File

@ -917,7 +917,7 @@ RegisterInfoEmitter::runMCDesc(raw_ostream &OS, CodeGenTarget &Target,
uint64_t Value = 0;
for (unsigned b = 0, be = BI->getNumBits(); b != be; ++b) {
if (BitInit *B = dyn_cast<BitInit>(BI->getBit(b)))
Value |= (uint64_t)B->getValue() << b;
Value |= (uint64_t)B->getValue() << b;
}
OS << " " << Value << ",\n";
}