8cbe27e7ae
(Minimal change to support easy backmerging.) BUG=v8:5938 Change-Id: Icad35c90d9c2451cd63a4ab7e495d9b5252da693 Reviewed-on: https://chromium-review.googlesource.com/439170 Reviewed-by: Jochen Eisinger <jochen@chromium.org> Commit-Queue: Marja Hölttä <marja@chromium.org> Cr-Commit-Position: refs/heads/master@{#43031}
17 lines
360 B
JavaScript
17 lines
360 B
JavaScript
// Copyright 2017 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
// Flags: --validate-asm --ignition-staging --lazy-inner-functions
|
|
|
|
function outer() {
|
|
"use asm";
|
|
function inner() {
|
|
switch (1) {
|
|
case 0:
|
|
break foo;
|
|
}
|
|
}
|
|
}
|
|
outer();
|