[MCJIT] Make sure we print the full 64-bit result of exprs in RuntimeDyldChecker.
authorLang Hames <lhames@gmail.com>
Tue, 29 Jul 2014 21:38:20 +0000 (21:38 +0000)
committerLang Hames <lhames@gmail.com>
Tue, 29 Jul 2014 21:38:20 +0000 (21:38 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@214227 91177308-0d34-0410-b5e6-96231b3b80d8

lib/ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.cpp

index 135444f9b5bb8138732090ddaeb06d317df88ddd..9873897f69182c240dd07cdba1fe1e82392b3dd7 100644 (file)
@@ -62,8 +62,8 @@ public:
 
     if (LHSResult.getValue() != RHSResult.getValue()) {
       Checker.ErrStream << "Expression '" << Expr << "' is false: "
 
     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;
     }
                         << "\n";
       return false;
     }