Simplify code by using ConstantInt::getRawValue instead of checking to see

whether the constant is signed or unsigned, then casting


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7252 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2003-07-23 15:22:26 +00:00
parent c8bf87af3e
commit c07736a397
17 changed files with 45 additions and 133 deletions

View File

@@ -293,9 +293,7 @@ static std::string getAsCString(const ConstantArray *CVA) {
const Type *ETy = cast<ArrayType>(CVA->getType())->getElementType();
Result = "\"";
for (unsigned i = 0; i < CVA->getNumOperands(); ++i) {
unsigned char C = (ETy == Type::SByteTy) ?
(unsigned char)cast<ConstantSInt>(CVA->getOperand(i))->getValue() :
(unsigned char)cast<ConstantUInt>(CVA->getOperand(i))->getValue();
unsigned char C = cast<ConstantInt>(CVA->getOperand(i))->getRawValue();
if (C == '"') {
Result += "\\\"";
@@ -943,19 +941,14 @@ bool Printer::doInitialization(Module &M)
return false; // success
}
static const Function *isConstantFunctionPointerRef (const Constant *C) {
const ConstantPointerRef *R = dyn_cast<ConstantPointerRef>(C);
if (R) {
const Function *F = dyn_cast<Function>(R->getValue());
if (F) {
static const Function *isConstantFunctionPointerRef(const Constant *C) {
if (const ConstantPointerRef *R = dyn_cast<ConstantPointerRef>(C))
if (const Function *F = dyn_cast<Function>(R->getValue()))
return F;
}
}
return NULL;
return 0;
}
bool Printer::doFinalization(Module &M)
{
bool Printer::doFinalization(Module &M) {
// Print out module-level global variables here.
for (Module::const_giterator I = M.gbegin(), E = M.gend(); I != E; ++I) {
std::string name(getValueName(I));
@@ -989,5 +982,3 @@ bool Printer::doFinalization(Module &M)
MangledGlobals.clear();
return false; // success
}