Skip to content

Commit 9b0f689

Browse files
committedJan 14, 2022
8279947: Remove two redundant gvn.transform calls in Parse::do_one_bytecode()
Reviewed-by: kvn
1 parent eab4e6d commit 9b0f689

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed
 

‎src/hotspot/share/opto/parse2.cpp

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
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:

0 commit comments

Comments
 (0)
Please sign in to comment.