From 4560657b4c1bb90f899bf59a01a38742f41d9603 Mon Sep 17 00:00:00 2001 From: Duraid Madina Date: Sun, 15 May 2005 13:05:48 +0000 Subject: [PATCH] aCC and STLport complained about this, because they're like that git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22053 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/AsmPrinter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/CodeGen/AsmPrinter.cpp b/lib/CodeGen/AsmPrinter.cpp index 7abb8d59543..ce9a84eecc7 100644 --- a/lib/CodeGen/AsmPrinter.cpp +++ b/lib/CodeGen/AsmPrinter.cpp @@ -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(CV)) O << CI->getValue(); else if (isa((Value*)CV)) {