File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change 11/*
2- * Copyright (c) 1998, 2021 , Oracle and/or its affiliates. All rights reserved.
2+ * Copyright (c) 1998, 2022 , Oracle and/or its affiliates. All rights reserved.
33 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44 *
55 * This code is free software; you can redistribute it and/or modify it
@@ -2295,8 +2295,7 @@ void Parse::do_one_bytecode() {
22952295 // out to memory to round, the machine instruction that implements
22962296 // ConvL2D is responsible for rounding.
22972297 // c = precision_rounding(b);
2298- c = _gvn.transform (b);
2299- push (c);
2298+ push (b);
23002299 } else {
23012300 l2f ();
23022301 }
@@ -2307,8 +2306,7 @@ void Parse::do_one_bytecode() {
23072306 b = _gvn.transform ( new ConvL2DNode (a));
23082307 // For x86_32.ad, rounding is always necessary (see _l2f above).
23092308 // c = dprecision_rounding(b);
2310- c = _gvn.transform (b);
2311- push_pair (c);
2309+ push_pair (b);
23122310 break ;
23132311
23142312 case Bytecodes::_f2l:
You can’t perform that action at this time.
0 commit comments