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

Simplify code

llvm-svn: 33123
This commit is contained in:
Chris Lattner 2007-01-12 18:15:09 +00:00
parent 01779f41de
commit e0b9a74157

View File

@ -389,10 +389,7 @@ void AsmPrinter::EmitConstantValueOnly(const Constant *CV) {
if (CV->isNullValue() || isa<UndefValue>(CV))
O << "0";
else if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
if (CI->getType() == Type::Int1Ty) {
assert(CI->getZExtValue());
O << "1";
} else O << CI->getSExtValue();
O << CI->getZExtValue();
} else if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) {
// This is a constant address for a global variable or function. Use the
// name of the variable or function as the address value, possibly