File tree 1 file changed +8
-8
lines changed
1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -2543,17 +2543,17 @@ void IdealLoopTree::dump_head() const {
2543
2543
tty->print (" limit_check" );
2544
2544
entry = PhaseIdealLoop::skip_loop_predicates (entry);
2545
2545
}
2546
- if (UseLoopPredicate ) {
2547
- entry = PhaseIdealLoop::find_predicate_insertion_point (entry, Deoptimization::Reason_predicate );
2548
- if (entry != NULL ) {
2549
- tty->print (" predicated " );
2546
+ if (UseProfiledLoopPredicate ) {
2547
+ predicate = PhaseIdealLoop::find_predicate_insertion_point (entry, Deoptimization::Reason_profile_predicate );
2548
+ if (predicate != NULL ) {
2549
+ tty->print (" profile_predicated " );
2550
2550
entry = PhaseIdealLoop::skip_loop_predicates (entry);
2551
2551
}
2552
2552
}
2553
- if (UseProfiledLoopPredicate ) {
2554
- entry = PhaseIdealLoop::find_predicate_insertion_point (entry, Deoptimization::Reason_profile_predicate );
2555
- if (entry != NULL ) {
2556
- tty->print (" profile_predicated " );
2553
+ if (UseLoopPredicate ) {
2554
+ predicate = PhaseIdealLoop::find_predicate_insertion_point (entry, Deoptimization::Reason_predicate );
2555
+ if (predicate != NULL ) {
2556
+ tty->print (" predicated " );
2557
2557
}
2558
2558
}
2559
2559
if (_head->is_CountedLoop ()) {
You can’t perform that action at this time.
0 commit comments