// 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: --allow-natives-syntax(functionTestMathMaxOnLargeInt(){functionModule(stdlib){"use asm";varmax=stdlib.Math.max;functionf(){returnmax(42,0xffffffff);}returnf;}varf=Module(this);assertEquals(0xffffffff,f());assertFalse(%IsAsmWasmCode(Module));})();(functionTestMathMinOnLargeInt(){functionModule(stdlib){"use asm";varmin=stdlib.Math.min;functionf(){returnmin(42,0xffffffff);}returnf;}varf=Module(this);assertEquals(42,f());assertFalse(%IsAsmWasmCode(Module));})();