File tree 2 files changed +4
-3
lines changed
test/hotspot/jtreg/compiler/c2/irTests
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -1113,10 +1113,11 @@ void SuperWord::dependence_graph() {
1113
1113
int cmp = p1.cmp (p2);
1114
1114
if (SuperWordRTDepCheck &&
1115
1115
p1.base () != p2.base () && p1.valid () && p2.valid ()) {
1116
- // Create a runtime check to disambiguate
1116
+ // Trace disjoint pointers
1117
1117
OrderedPair pp (p1.base (), p2.base ());
1118
1118
_disjoint_ptrs.append_if_missing (pp);
1119
- } else if (!SWPointer::not_equal (cmp)) {
1119
+ }
1120
+ if (!SWPointer::not_equal (cmp)) {
1120
1121
// Possibly same address
1121
1122
_dg.make_edge (s1, s2);
1122
1123
sink_dependent = false ;
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ public class TestVectorizeTypeConversion {
51
51
private static float [] floatb = new float [SIZE ];
52
52
53
53
public static void main (String [] args ) {
54
- TestFramework .run ( );
54
+ TestFramework .runWithFlags ( "-XX:+SuperWordRTDepCheck" );
55
55
}
56
56
57
57
@ Test
You can’t perform that action at this time.
0 commit comments