Skip to content

Commit aa58d97

Browse files
committed
Remove outdated test workaround
1 parent e98f113 commit aa58d97

File tree

1 file changed

+1
-7
lines changed
  • truffle/src/com.oracle.truffle.api.bytecode.test/src/com/oracle/truffle/api/bytecode/test/basic_interpreter

1 file changed

+1
-7
lines changed

truffle/src/com.oracle.truffle.api.bytecode.test/src/com/oracle/truffle/api/bytecode/test/basic_interpreter/BasicInterpreterTest.java

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2332,13 +2332,7 @@ public void testManyLocals() {
23322332
b.endBlock();
23332333
b.endRoot();
23342334
});
2335-
2336-
// TODO(GR-59372): Without default values, every local slot gets cleared on entry, which
2337-
// breaks compilation because the number of clears exceed PE's explode loop threshold. Using
2338-
// illegal default slots will solve this problem because the clears will be unnecessary.
2339-
if (run.getDefaultLocalValue() != null) {
2340-
assertEquals(42L, node.getCallTarget().call());
2341-
}
2335+
assertEquals(42L, node.getCallTarget().call());
23422336
}
23432337

23442338
@Test

0 commit comments

Comments
 (0)