Avoid a "loss of precision" error in gcc 4.1.3.

llvm-svn: 37105
This commit is contained in:
Reid Spencer 2007-05-16 16:39:29 +00:00
parent 59ae77486c
commit 1925c537f2
1 changed files with 1 additions and 1 deletions

View File

@ -1344,7 +1344,7 @@ static void PrintGenericValue(const GenericValue &Val, const Type* Ty) {
case Type::VoidTyID: DOUT << "void"; break; case Type::VoidTyID: DOUT << "void"; break;
case Type::FloatTyID: DOUT << "float " << Val.FloatVal; break; case Type::FloatTyID: DOUT << "float " << Val.FloatVal; break;
case Type::DoubleTyID: DOUT << "double " << Val.DoubleVal; break; case Type::DoubleTyID: DOUT << "double " << Val.DoubleVal; break;
case Type::PointerTyID: DOUT << "void* " << unsigned(Val.PointerVal); break; case Type::PointerTyID: DOUT << "void* " << intptr_t(Val.PointerVal); break;
case Type::IntegerTyID: case Type::IntegerTyID:
DOUT << "i" << Val.IntVal.getBitWidth() << " " << Val.IntVal.toString(10) DOUT << "i" << Val.IntVal.getBitWidth() << " " << Val.IntVal.toString(10)
<< "\n"; << "\n";