Skip to content

Commit

Permalink
Fix wrong printf code used for JitBuilder ConstInt64 log output
Browse files Browse the repository at this point in the history
This PR Fixes #5775
Credit for fix of the problem goes to Mark Stoodley.

Signed-off-by: Georgiy Krylov <georgiy.krylov@unb.ca>
  • Loading branch information
georgkrylov committed Jan 29, 2021
1 parent 38abd41 commit 5a97aea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/ilgen/OMRIlBuilder.cpp
Expand Up @@ -925,7 +925,7 @@ TR::IlValue *
OMR::IlBuilder::ConstInt64(int64_t value)
{
TR::IlValue *returnValue = newValue(Int64, TR::Node::lconst(value));
TraceIL("IlBuilder[ %p ]::%d is ConstInt64 %d\n", this, returnValue->getID(), value);
TraceIL("IlBuilder[ %p ]::%d is ConstInt64 %lld\n", this, returnValue->getID(), value);
return returnValue;
}

Expand Down

0 comments on commit 5a97aea

Please sign in to comment.