Skip to content

Commit

Permalink
Fix local variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
chhagedorn committed Nov 25, 2024
1 parent 758eec7 commit 1c8af28
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/hotspot/share/opto/predicates.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -905,9 +905,10 @@ IfTrueNode* CreateAssertionPredicatesVisitor::initialize_from_template(
const TemplateAssertionPredicate& template_assertion_predicate) const {
DEBUG_ONLY(template_assertion_predicate.verify();)
IfNode* template_head = template_assertion_predicate.head();
InitializedAssertionPredicateCreator initialized_assertion_predicate(_phase);
IfTrueNode* initialized_predicate = initialized_assertion_predicate.create_from_template(template_head,_new_control,
_init, _stride);
InitializedAssertionPredicateCreator initialized_assertion_predicate_creator(_phase);
IfTrueNode* initialized_predicate = initialized_assertion_predicate_creator.create_from_template(template_head,
_new_control,
_init, _stride);
DEBUG_ONLY(InitializedAssertionPredicate::verify(initialized_predicate);)
template_assertion_predicate.rewire_loop_data_dependencies(initialized_predicate, _node_in_loop_body, _phase);
return initialized_predicate;
Expand Down

0 comments on commit 1c8af28

Please sign in to comment.