d43cebe7b5
R=ahaas@chromium.org TEST=message/asm-function-variable-collision BUG=v8:6127 Change-Id: I75658f0bf58a8b3de5eb42f4f054476f8d2c139b Reviewed-on: https://chromium-review.googlesource.com/469651 Commit-Queue: Michael Starzinger <mstarzinger@chromium.org> Reviewed-by: Andreas Haas <ahaas@chromium.org> Cr-Commit-Position: refs/heads/master@{#44475}
16 lines
460 B
JavaScript
16 lines
460 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 --no-stress-opt --no-stress-validate-asm --no-suppress-asm-messages --fast-validate-asm
|
|
|
|
// Violates asm.js because symbol {f} is defined as module function twice.
|
|
|
|
function Module() {
|
|
"use asm"
|
|
function f() {}
|
|
function f() {}
|
|
return { f:f };
|
|
}
|
|
Module().f();
|