Skip to content

Commit 928d632

Browse files
author
Rahul Raghavan
committed
8252237: C2: Call to compute_separating_interferences has wrong argument order
Reviewed-by: kvn, thartmann
1 parent 50fa162 commit 928d632

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hotspot/share/opto/coalesce.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@ void PhaseConservativeCoalesce::union_helper( Node *lr1_node, Node *lr2_node, ui
535535

536536
// Factored code from copy_copy that computes extra interferences from
537537
// lengthening a live range by double-coalescing.
538-
uint PhaseConservativeCoalesce::compute_separating_interferences(Node *dst_copy, Node *src_copy, Block *b, uint bindex, RegMask &rm, uint reg_degree, uint rm_size, uint lr1, uint lr2 ) {
538+
uint PhaseConservativeCoalesce::compute_separating_interferences(Node *dst_copy, Node *src_copy, Block *b, uint bindex, RegMask &rm, uint rm_size, uint reg_degree, uint lr1, uint lr2 ) {
539539

540540
assert(!lrgs(lr1)._fat_proj, "cannot coalesce fat_proj");
541541
assert(!lrgs(lr2)._fat_proj, "cannot coalesce fat_proj");

0 commit comments

Comments
 (0)