mul_007.phpt 457 B

123456789101112131415161718192021
  1. --TEST--
  2. JIT MUL: 007 incorrect optimization
  3. --INI--
  4. opcache.enable=1
  5. opcache.enable_cli=1
  6. opcache.file_update_protection=0
  7. opcache.jit_buffer_size=1M
  8. opcache.protect_memory=1
  9. --FILE--
  10. <?php
  11. function test() {
  12. 1.5%2%2%2/2%2;
  13. }
  14. test();
  15. ?>
  16. DONE
  17. --EXPECTF--
  18. Deprecated: Implicit conversion from float 1.5 to int loses precision in %smul_007.php on line 3
  19. Deprecated: Implicit conversion from float 0.5 to int loses precision in %smul_007.php on line 3
  20. DONE