8c72792b6d
Note that prior to having canonical shared function infos, this has been a source of duplicate shared function infos. R=bmeurer@chromium.org BUG=chromium:504787 LOG=N Review URL: https://codereview.chromium.org/1209383002 Cr-Commit-Position: refs/heads/master@{#29326}
16 lines
285 B
JavaScript
16 lines
285 B
JavaScript
// Copyright 2015 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: --noturbo-osr
|
|
|
|
function f() {
|
|
"use asm";
|
|
function g() {
|
|
function f() {};
|
|
}
|
|
return g;
|
|
}
|
|
|
|
f()();
|