TypePHP 编译器
https://swoole.com/aot/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
340 B
14 lines
340 B
--TEST--
|
|
Zend signed multiply 64-bit, variation 1
|
|
--SKIPIF--
|
|
<?php if ((1 << 31) < 0) print "skip Running on 32-bit target"; ?>
|
|
--FILE--
|
|
<?php
|
|
var_dump(0x80000000 * -0xffffffff);
|
|
var_dump(0x80000001 * 0xfffffffe);
|
|
var_dump(0x80000001 * -0xffffffff);
|
|
?>
|
|
--EXPECT--
|
|
int(-9223372034707292160)
|
|
int(9223372036854775806)
|
|
int(9223372034707292161)
|
|
|