| Index: tests/compiler/dart2js/cps_ir/expected/redundant_condition.js
|
| diff --git a/tests/compiler/dart2js/cps_ir/expected/redundant_condition.js b/tests/compiler/dart2js/cps_ir/expected/redundant_condition.js
|
| index a3a2ae0be88bea6046be82cb410847d5deb94042..211aec6f54359b82e0694b2ae07ee9483c35545e 100644
|
| --- a/tests/compiler/dart2js/cps_ir/expected/redundant_condition.js
|
| +++ b/tests/compiler/dart2js/cps_ir/expected/redundant_condition.js
|
| @@ -27,7 +27,7 @@
|
|
|
| function() {
|
| var a = V.nextNumber();
|
| - if (!(typeof a === "number" && Math.floor(a) === a))
|
| + if (typeof a !== "number" || Math.floor(a) !== a)
|
| throw H.wrapException("error 1");
|
| a += 5;
|
| V.action(a);
|
|
|