File tree 1 file changed +3
-5
lines changed
1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change 1
1
/*
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.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -2295,8 +2295,7 @@ void Parse::do_one_bytecode() {
2295
2295
// out to memory to round, the machine instruction that implements
2296
2296
// ConvL2D is responsible for rounding.
2297
2297
// c = precision_rounding(b);
2298
- c = _gvn.transform (b);
2299
- push (c);
2298
+ push (b);
2300
2299
} else {
2301
2300
l2f ();
2302
2301
}
@@ -2307,8 +2306,7 @@ void Parse::do_one_bytecode() {
2307
2306
b = _gvn.transform ( new ConvL2DNode (a));
2308
2307
// For x86_32.ad, rounding is always necessary (see _l2f above).
2309
2308
// c = dprecision_rounding(b);
2310
- c = _gvn.transform (b);
2311
- push_pair (c);
2309
+ push_pair (b);
2312
2310
break ;
2313
2311
2314
2312
case Bytecodes::_f2l:
You can’t perform that action at this time.
0 commit comments