OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2017 the V8 project authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 // Flags: --validate-asm --ignition-staging | |
6 | |
7 function outer() { | |
8 "use asm"; | |
9 function inner() { | |
10 switch (1) { | |
11 case 0: | |
12 break foo; | |
13 } | |
14 } | |
15 } | |
16 outer(); | |
OLD | NEW |