3a47312226
R=clemensh@chromium.org BUG=v8:6127 Change-Id: I104bf807d3da6a9f269e4f729b254bc6a0d2f0df Reviewed-on: https://chromium-review.googlesource.com/496206 Reviewed-by: Clemens Hammacher <clemensh@chromium.org> Reviewed-by: Michael Achenbach <machenbach@chromium.org> Commit-Queue: Michael Starzinger <mstarzinger@chromium.org> Cr-Commit-Position: refs/heads/master@{#45098}
25 lines
605 B
JavaScript
25 lines
605 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
|
|
|
|
// Violates asm.js {funTable} use in {f} doesn't match its use in {g}.
|
|
|
|
function Module() {
|
|
"use asm"
|
|
function f(a) {
|
|
a = a | 0;
|
|
a = funTable[a & 0](a | 0) | 0;
|
|
return a | 0;
|
|
}
|
|
function g(a) {
|
|
a = a | 0;
|
|
a = funTable[a & 0](2.3) | 0;
|
|
return a | 0;
|
|
}
|
|
var funTable = [ f ];
|
|
return { f:f, g:g };
|
|
}
|
|
Module();
|