82e3c3ee35
R=ahaas@chromium.org TEST=message/asm-function-mismatch-def BUG=v8:6208 Change-Id: I415281d63bb376da3220ba31bbdf0b3d60e03299 Reviewed-on: https://chromium-review.googlesource.com/469947 Commit-Queue: Michael Starzinger <mstarzinger@chromium.org> Reviewed-by: Andreas Haas <ahaas@chromium.org> Cr-Commit-Position: refs/heads/master@{#44482}
20 lines
508 B
JavaScript
20 lines
508 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 {g} has return type different from use of {g} in {f}.
|
|
|
|
function Module() {
|
|
"use asm"
|
|
function f() {
|
|
return g() | 0;
|
|
}
|
|
function g() {
|
|
return 2.3;
|
|
}
|
|
return { f:f };
|
|
}
|
|
Module().f();
|