mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-23 20:15:35 +00:00
Avoid a "loss of precision" error in gcc 4.1.3.
llvm-svn: 37105
This commit is contained in:
parent
3296999dbb
commit
a89e097aa2
@ -1344,7 +1344,7 @@ static void PrintGenericValue(const GenericValue &Val, const Type* Ty) {
|
||||
case Type::VoidTyID: DOUT << "void"; break;
|
||||
case Type::FloatTyID: DOUT << "float " << Val.FloatVal; 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:
|
||||
DOUT << "i" << Val.IntVal.getBitWidth() << " " << Val.IntVal.toString(10)
|
||||
<< "\n";
|
||||
|
Loading…
Reference in New Issue
Block a user