1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Fix indentation.

llvm-svn: 202344
This commit is contained in:
Craig Topper 2014-02-27 03:30:36 +00:00
parent 85c1025ceb
commit 3ce461ca66

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";
}