aCC and STLport complained about this, because they're like that

llvm-svn: 22053
This commit is contained in:
Duraid Madina 2005-05-15 13:05:48 +00:00
parent 5d60e7dc29
commit f4ca48c89e

View File

@ -64,7 +64,7 @@ void AsmPrinter::emitConstantValueOnly(const Constant *CV) {
if (((CI->getValue() << 32) >> 32) == CI->getValue())
O << CI->getValue();
else
O << (unsigned long long)CI->getValue();
O << (uint64_t)CI->getValue();
else if (const ConstantUInt *CI = dyn_cast<ConstantUInt>(CV))
O << CI->getValue();
else if (isa<GlobalValue>((Value*)CV)) {