| Index: frog/tests/leg/ssa_phi_codegen_test.dart
|
| ===================================================================
|
| --- frog/tests/leg/ssa_phi_codegen_test.dart (revision 8141)
|
| +++ frog/tests/leg/ssa_phi_codegen_test.dart (working copy)
|
| @@ -66,15 +66,11 @@
|
| Expect.isTrue(regexp.hasMatch(generated));
|
|
|
| generated = compile(TEST_TWO, 'main');
|
| - // TODO(ngeoffray): Add live range analysis to the codegen
|
| - // to make this test pass.
|
| regexp = new RegExp("t = \\(?$anyIdentifier +");
|
| - Expect.isFalse(regexp.hasMatch(generated));
|
| + Expect.isTrue(regexp.hasMatch(generated));
|
|
|
| - // TODO(ngeoffray): Add live range analysis to the codegen
|
| - // to make this test pass.
|
| regexp = new RegExp("i = \\(?$anyIdentifier +");
|
| - Expect.isFalse(regexp.hasMatch(generated));
|
| + Expect.isTrue(regexp.hasMatch(generated));
|
|
|
| generated = compile(TEST_THREE, 'foo');
|
|
|
|
|