Remove an unused variable.

llvm-svn: 31403
This commit is contained in:
Reid Spencer 2006-11-03 01:48:30 +00:00
parent 16e05c378d
commit 03c6038226
1 changed files with 1 additions and 3 deletions

View File

@ -100,10 +100,8 @@ void CodeEmitterGen::run(std::ostream &o) {
BitsInit *BI = R->getValueAsBitsInit("Inst");
unsigned Value = 0;
const std::vector<RecordVal> &Vals = R->getValues();
// Start by filling in fixed values...
unsigned Value = 0;
for (unsigned i = 0, e = BI->getNumBits(); i != e; ++i) {
if (BitInit *B = dynamic_cast<BitInit*>(BI->getBit(e-i-1))) {
Value |= B->getValue() << (e-i-1);