[llvm-commits] CVS: llvm/lib/CodeGen/AsmPrinter.cpp

Duraid Madina duraid at octopus.com.au
Sun May 15 06:06:00 PDT 2005



Changes in directory llvm/lib/CodeGen:

AsmPrinter.cpp updated: 1.17 -> 1.18
---
Log message:

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



---
Diffs of the changes:  (+1 -1)

 AsmPrinter.cpp |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/lib/CodeGen/AsmPrinter.cpp
diff -u llvm/lib/CodeGen/AsmPrinter.cpp:1.17 llvm/lib/CodeGen/AsmPrinter.cpp:1.18
--- llvm/lib/CodeGen/AsmPrinter.cpp:1.17	Thu Apr 21 17:33:33 2005
+++ llvm/lib/CodeGen/AsmPrinter.cpp	Sun May 15 08:05:48 2005
@@ -64,7 +64,7 @@
     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)) {






More information about the llvm-commits mailing list