diff options
author | Duraid Madina <duraid@octopus.com.au> | 2005-05-15 13:05:48 +0000 |
---|---|---|
committer | Duraid Madina <duraid@octopus.com.au> | 2005-05-15 13:05:48 +0000 |
commit | 73c4dbae23af0995f849748d7ede708ee9f546ec (patch) | |
tree | ed64a5b8ac67747224e4a03072e5c8c5a51de770 /llvm/lib/CodeGen | |
parent | 17b2e4837be5626bbcfbe945274d50d4aa21ecd1 (diff) | |
download | bcm5719-llvm-73c4dbae23af0995f849748d7ede708ee9f546ec.tar.gz bcm5719-llvm-73c4dbae23af0995f849748d7ede708ee9f546ec.zip |
aCC and STLport complained about this, because they're like that
llvm-svn: 22053
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter.cpp index 7abb8d59543..ce9a84eecc7 100644 --- a/llvm/lib/CodeGen/AsmPrinter.cpp +++ b/llvm/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<ConstantUInt>(CV)) O << CI->getValue(); else if (isa<GlobalValue>((Value*)CV)) { |