bug79358.phpt 253 B

1234567891011121314151617
  1. --TEST--
  2. Bug #79358: JIT miscompile in composer
  3. --EXTENSIONS--
  4. opcache
  5. --FILE--
  6. <?php
  7. function test(int $x) {
  8. return ($x > 0xdead && unimportant()) ||
  9. ($x < 0xbeef && unimportant());
  10. }
  11. var_dump(test(0xcccc));
  12. ?>
  13. --EXPECT--
  14. bool(false)