We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17b2e48 commit 73c4dbaCopy full SHA for 73c4dba
llvm/lib/CodeGen/AsmPrinter.cpp
@@ -64,7 +64,7 @@ void AsmPrinter::emitConstantValueOnly(const Constant *CV) {
64
if (((CI->getValue() << 32) >> 32) == CI->getValue())
65
O << CI->getValue();
66
else
67
- O << (unsigned long long)CI->getValue();
+ O << (uint64_t)CI->getValue();
68
else if (const ConstantUInt *CI = dyn_cast<ConstantUInt>(CV))
69
70
else if (isa<GlobalValue>((Value*)CV)) {
0 commit comments