// Copyright 2020 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: --experimental-wasm-threadsload("test/mjsunit/wasm/wasm-module-builder.js");letmemory=newWebAssembly.Memory({initial:1,maximum:10,shared:true});letbuilder=newWasmModuleBuilder();builder.addImportedMemory("m","imported_mem",0,1<<16,"shared");builder.addFunction("main",kSig_i_v).addBody([kExprI32Const,0,kAtomicPrefix,kExprI32AtomicLoad16U,1,0]).exportAs("main");letmodule=newWebAssembly.Module(builder.toBuffer());letinstance=newWebAssembly.Instance(module,{m:{imported_mem:memory}});instance.exports.main();