mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-10 13:51:37 +00:00
aCC and STLport complained about this, because they're like that
llvm-svn: 22053
This commit is contained in:
parent
5d60e7dc29
commit
f4ca48c89e
@ -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)) {
|
||||
|
Loading…
Reference in New Issue
Block a user