We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8ed012 commit 2ba0575Copy full SHA for 2ba0575
src/hotspot/share/opto/macro.cpp
@@ -1629,11 +1629,12 @@ void PhaseMacroExpand::yank_alloc_node(AllocateNode* alloc) {
1629
}
1630
#ifndef PRODUCT
1631
if (PrintEliminateAllocations) {
1632
- if (alloc->is_AllocateArray()) {}
+ if (alloc->is_AllocateArray()) {
1633
tty->print_cr("++++ Eliminated: %d AllocateArray", alloc->_idx);
1634
} else {
1635
tty->print_cr("++++ Eliminated: %d Allocate", alloc->_idx);
1636
1637
+ }
1638
#endif
1639
_igvn.remove_dead_node(alloc);
1640
0 commit comments