Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Bug with Condy Primitive Long and Double #2878

Merged
merged 1 commit into from
Sep 15, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions runtime/compiler/ilgen/Walker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1250,8 +1250,8 @@ TR::Block * TR_J9ByteCodeIlGenerator::walker(TR::Block * prevBlock)

case J9BCldc: loadFromCP(TR::NoType, nextByte()); _bcIndex += 2; break;
case J9BCldcw: loadFromCP(TR::NoType, next2Bytes()); _bcIndex += 3; break;
case J9BCldc2lw: loadFromCP(TR::Int64, next2Bytes()); _bcIndex += 3; break;
case J9BCldc2dw: loadFromCP(TR::Double, next2Bytes()); _bcIndex += 3; break;
case J9BCldc2lw: loadFromCP(TR::NoType, next2Bytes()); _bcIndex += 3; break;
case J9BCldc2dw: loadFromCP(TR::NoType, next2Bytes()); _bcIndex += 3; break;

case J9BCiload0: loadAuto(TR::Int32, 0); _bcIndex += 1; break;
case J9BCiload1: loadAuto(TR::Int32, 1); _bcIndex += 1; break;
Expand Down