Disable loop optimization for parse-only tests
authorAnthony Van de Gejuchte <anthonyvdgent@gmail.com>
Fri, 18 Dec 2015 14:25:24 +0000 (15:25 +0100)
committerAnthony Van de Gejuchte <anthonyvdgent@gmail.com>
Fri, 18 Dec 2015 18:20:56 +0000 (19:20 +0100)
test/compress/loops.js

index b7194fe..91aa1c5 100644 (file)
@@ -123,6 +123,7 @@ drop_if_else_break_4: {
 }
 
 parse_do_while_with_semicolon: {
+    options = { loops: false };
     input: {
         do {
             x();
@@ -134,6 +135,7 @@ parse_do_while_with_semicolon: {
 }
 
 parse_do_while_without_semicolon: {
+    options = { loops: false };
     input: {
         do {
             x();