summaryrefslogtreecommitdiff
path: root/ext/opcache/tests/jit/shift_left_002.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/opcache/tests/jit/shift_left_002.phpt')
-rw-r--r--ext/opcache/tests/jit/shift_left_002.phpt18
1 files changed, 9 insertions, 9 deletions
diff --git a/ext/opcache/tests/jit/shift_left_002.phpt b/ext/opcache/tests/jit/shift_left_002.phpt
index 4b617530c5..a6478373b9 100644
--- a/ext/opcache/tests/jit/shift_left_002.phpt
+++ b/ext/opcache/tests/jit/shift_left_002.phpt
@@ -11,33 +11,33 @@ opcache.protect_memory=1
--FILE--
<?php
function shl0(int $a) {
- return $a << 0;
+ return $a << 0;
}
function shl1(int $a) {
- return $a << 1;
+ return $a << 1;
}
function shl2(int $a) {
- return $a << 2;
+ return $a << 2;
}
function shl64(int $a) {
- return $a << 64;
+ return $a << 64;
}
function shlNEG(int $a) {
- return $a << -1;
+ return $a << -1;
}
var_dump(shl0(1));
var_dump(shl1(1));
var_dump(shl2(1));
var_dump(shl2(-1));
try {
- var_dump(shl64(1));
+ var_dump(shl64(1));
} catch (Throwable $e) {
- echo "Exception " . $e->getMessage() . "\n";
+ echo "Exception " . $e->getMessage() . "\n";
}
try {
- var_dump(shlNEG(1));
+ var_dump(shlNEG(1));
} catch (Throwable $e) {
- echo "Exception (" . get_class($e) . "): " . $e->getMessage() . "\n";
+ echo "Exception (" . get_class($e) . "): " . $e->getMessage() . "\n";
}
?>
--EXPECT--