From: Chris Lattner Date: Mon, 23 Feb 2004 03:27:05 +0000 (+0000) Subject: Work around a gas bug. Print '-9223372036854775808' as unsigned. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=f7b42259e9901a0f2e7786523080f908ebb918e6;p=oota-llvm.git Work around a gas bug. Print '-9223372036854775808' as unsigned. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11729 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/X86/Printer.cpp b/lib/Target/X86/Printer.cpp index be1f34d3bbe..d71715aa616 100644 --- a/lib/Target/X86/Printer.cpp +++ b/lib/Target/X86/Printer.cpp @@ -144,7 +144,10 @@ void Printer::emitConstantValueOnly(const Constant *CV) { assert(CB == ConstantBool::True); O << "1"; } else if (const ConstantSInt *CI = dyn_cast(CV)) - O << CI->getValue(); + if (((CI->getValue() << 32) >> 32) == CI->getValue()) + O << CI->getValue(); + else + O << (unsigned long long)CI->getValue(); else if (const ConstantUInt *CI = dyn_cast(CV)) O << CI->getValue(); else if (const ConstantPointerRef *CPR = dyn_cast(CV)) diff --git a/lib/Target/X86/X86AsmPrinter.cpp b/lib/Target/X86/X86AsmPrinter.cpp index be1f34d3bbe..d71715aa616 100644 --- a/lib/Target/X86/X86AsmPrinter.cpp +++ b/lib/Target/X86/X86AsmPrinter.cpp @@ -144,7 +144,10 @@ void Printer::emitConstantValueOnly(const Constant *CV) { assert(CB == ConstantBool::True); O << "1"; } else if (const ConstantSInt *CI = dyn_cast(CV)) - O << CI->getValue(); + if (((CI->getValue() << 32) >> 32) == CI->getValue()) + O << CI->getValue(); + else + O << (unsigned long long)CI->getValue(); else if (const ConstantUInt *CI = dyn_cast(CV)) O << CI->getValue(); else if (const ConstantPointerRef *CPR = dyn_cast(CV))