[ORC] Fix hex printing of uint64_t values.
authorLang Hames <lhames@gmail.com>
Wed, 31 Oct 2018 05:16:14 +0000 (05:16 +0000)
committerLang Hames <lhames@gmail.com>
Wed, 31 Oct 2018 05:16:14 +0000 (05:16 +0000)
commit91449355f554bd10d38910fabb6f8b006885648e
tree7fa4ba07aea72f2e7c5af662ffbe6ce57fbfdf58
parent86d122ec36ac8560e78ef57554ad9b03acb2f143
[ORC] Fix hex printing of uint64_t values.

A plain "%x" format string will drop the high 32-bits. Use the PRIx64 macro
instead.

llvm-svn: 345696
llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h
llvm/lib/ExecutionEngine/Orc/Core.cpp
llvm/lib/ExecutionEngine/Orc/IndirectionUtils.cpp