diff --git a/lib/Target/CBackend/CBackend.cpp b/lib/Target/CBackend/CBackend.cpp index 7f6cadca49c..ab7a35aad72 100644 --- a/lib/Target/CBackend/CBackend.cpp +++ b/lib/Target/CBackend/CBackend.cpp @@ -536,13 +536,16 @@ void CWriter::printConstant(Constant *CPV) { Out << cast(CPV)->getValue(); break; case Type::IntTyID: if ((int)cast(CPV)->getValue() == (int)0x80000000) - Out << "((int)0x80000000)"; // Handle MININT specially to avoid warning + Out << "((int)0x80000000U)"; // Handle MININT specially to avoid warning else Out << cast(CPV)->getValue(); break; case Type::LongTyID: - Out << cast(CPV)->getValue() << "ll"; break; + if (cast(CPV)->isMinValue()) + Out << "(/*INT64_MIN*/(-9223372036854775807LL)-1)"; + else + Out << cast(CPV)->getValue() << "ll"; break; case Type::UByteTyID: case Type::UShortTyID: diff --git a/lib/Target/CBackend/Writer.cpp b/lib/Target/CBackend/Writer.cpp index 7f6cadca49c..ab7a35aad72 100644 --- a/lib/Target/CBackend/Writer.cpp +++ b/lib/Target/CBackend/Writer.cpp @@ -536,13 +536,16 @@ void CWriter::printConstant(Constant *CPV) { Out << cast(CPV)->getValue(); break; case Type::IntTyID: if ((int)cast(CPV)->getValue() == (int)0x80000000) - Out << "((int)0x80000000)"; // Handle MININT specially to avoid warning + Out << "((int)0x80000000U)"; // Handle MININT specially to avoid warning else Out << cast(CPV)->getValue(); break; case Type::LongTyID: - Out << cast(CPV)->getValue() << "ll"; break; + if (cast(CPV)->isMinValue()) + Out << "(/*INT64_MIN*/(-9223372036854775807LL)-1)"; + else + Out << cast(CPV)->getValue() << "ll"; break; case Type::UByteTyID: case Type::UShortTyID: