1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

[MCJIT] Make sure we print the full 64-bit result of exprs in RuntimeDyldChecker.

llvm-svn: 214227
This commit is contained in:
Lang Hames 2014-07-29 21:38:20 +00:00
parent debf00a333
commit 1d332e5199

View File

@ -62,8 +62,8 @@ public:
if (LHSResult.getValue() != RHSResult.getValue()) {
Checker.ErrStream << "Expression '" << Expr << "' is false: "
<< format("0x%lx", LHSResult.getValue())
<< " != " << format("0x%lx", RHSResult.getValue())
<< format("0x%" PRIx64, LHSResult.getValue())
<< " != " << format("0x%" PRIx64, RHSResult.getValue())
<< "\n";
return false;
}