Fix a bug introduced by the Getelementptr change

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3695 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2002-09-12 20:34:47 +00:00
parent 597f81fea2
commit 59afbf3999
2 changed files with 2 additions and 2 deletions

View File

@ -925,7 +925,7 @@ void CWriter::printIndexingExpression(Value *Ptr, User::op_iterator I,
printType(cast<PointerType>(Ptr->getType())->getElementType());
Out << ")]";
} else {
Out << ".field" << cast<ConstantSInt>(*I)->getValue();
Out << ".field" << cast<ConstantUInt>(*I)->getValue();
}
}

View File

@ -925,7 +925,7 @@ void CWriter::printIndexingExpression(Value *Ptr, User::op_iterator I,
printType(cast<PointerType>(Ptr->getType())->getElementType());
Out << ")]";
} else {
Out << ".field" << cast<ConstantSInt>(*I)->getValue();
Out << ".field" << cast<ConstantUInt>(*I)->getValue();
}
}