Skip to content

Commit 73c4dba

Browse files
aCC and STLport complained about this, because they're like that
llvm-svn: 22053
1 parent 17b2e48 commit 73c4dba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/CodeGen/AsmPrinter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ void AsmPrinter::emitConstantValueOnly(const Constant *CV) {
6464
if (((CI->getValue() << 32) >> 32) == CI->getValue())
6565
O << CI->getValue();
6666
else
67-
O << (unsigned long long)CI->getValue();
67+
O << (uint64_t)CI->getValue();
6868
else if (const ConstantUInt *CI = dyn_cast<ConstantUInt>(CV))
6969
O << CI->getValue();
7070
else if (isa<GlobalValue>((Value*)CV)) {

0 commit comments

Comments
 (0)