Skip to content

Commit

Permalink
whitespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
rwestrel committed Mar 5, 2021
1 parent 7ec1fab commit 55d347c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hotspot/share/opto/compile.cpp
Expand Up @@ -4808,7 +4808,7 @@ Node* Compile::narrow_value(BasicType bt, Node* value, const Type* type, PhaseGV
result = new AndINode(value,phase->intcon(0xFFFF));
} else {
assert(bt == T_SHORT, "unexpected narrow type");
result = phase->transform( new LShiftINode(value, phase->intcon(16)) );
result = phase->transform(new LShiftINode(value, phase->intcon(16)));
result = new RShiftINode(result, phase->intcon(16));
}
if (transform_res) {
Expand Down

0 comments on commit 55d347c

Please sign in to comment.