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}
16 lines
389 B
JavaScript
16 lines
389 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
|
|
|
|
function Module() {
|
|
"use asm"
|
|
function f(a) {
|
|
a = a | 0;
|
|
funTable[a & 0](a | 0);
|
|
}
|
|
return { f:f };
|
|
}
|
|
Module();
|