summaryrefslogtreecommitdiff
path: root/ext/opcache/tests/ssa_bug_002.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/opcache/tests/ssa_bug_002.phpt')
-rw-r--r--ext/opcache/tests/ssa_bug_002.phpt16
1 files changed, 16 insertions, 0 deletions
diff --git a/ext/opcache/tests/ssa_bug_002.phpt b/ext/opcache/tests/ssa_bug_002.phpt
new file mode 100644
index 0000000000..9ff6f799f4
--- /dev/null
+++ b/ext/opcache/tests/ssa_bug_002.phpt
@@ -0,0 +1,16 @@
+--TEST--
+Incorrect NOP removal on jump to NOP
+--FILE--
+<?php
+
+function test(int $i) : int {
+ if ($i == 1) {
+ $x = $i + 1;
+ }
+ return $i;
+}
+var_dump(test(42));
+
+?>
+--EXPECT--
+int(42)