summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/constant-folding.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/mjsunit/constant-folding.js')
-rw-r--r--deps/v8/test/mjsunit/constant-folding.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/deps/v8/test/mjsunit/constant-folding.js b/deps/v8/test/mjsunit/constant-folding.js
index d6ac9fe3d5..c14789651e 100644
--- a/deps/v8/test/mjsunit/constant-folding.js
+++ b/deps/v8/test/mjsunit/constant-folding.js
@@ -147,7 +147,6 @@ function test() {
switch(3) {
case 5:
assertUnreachable();
- break;
case 3:
j = 13;
default:
@@ -158,7 +157,6 @@ function test() {
case 9:
j = 19;
assertUnreachable();
- break;
}
assertEquals(17, j, "switch with constant value");
}