d380c7da6d
R=clemensh@chromium.org TEST=message/asm-import-wrong-object BUG=chromium:718653 Change-Id: Ib903d7041ffb6a67c1b3c7be3e0f9455229acd90 Reviewed-on: https://chromium-review.googlesource.com/497747 Reviewed-by: Clemens Hammacher <clemensh@chromium.org> Commit-Queue: Michael Starzinger <mstarzinger@chromium.org> Cr-Commit-Position: refs/heads/master@{#45129}
12 lines
361 B
JavaScript
12 lines
361 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(stdlib, foreign, heap) {
|
|
"use asm"
|
|
var x = +stdlib.x;
|
|
}
|
|
Module(this, { x:0 });
|