bug80745.phpt 799 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. --TEST--
  2. Bug #80745 (JIT produces Assert failure and UNKNOWN:0 var_dumps in code involving bitshifts)
  3. --INI--
  4. opcache.enable=1
  5. opcache.enable_cli=1
  6. opcache.file_update_protection=0
  7. opcache.jit=function
  8. opcache.jit_buffer_size=1M
  9. opcache.protect_memory=1
  10. --EXTENSIONS--
  11. opcache
  12. --FILE--
  13. <?php
  14. final class Message
  15. {
  16. public $qr = false;
  17. public $opcode = 0;
  18. public $aa = false;
  19. }
  20. echo "Starting...\n";
  21. function headerToBinary(Message $message)
  22. {
  23. $flags = 0;
  24. $flags = ($flags << 1) | ($message->qr ? 1 : 0);
  25. $flags = ($flags << 4) | $message->opcode;
  26. var_dump($flags);
  27. $flags = ($flags << 1) | ($message->aa ? 1 : 0);
  28. }
  29. headerToBinary(new Message());
  30. echo "PROBLEM NOT REPRODUCED !\n";
  31. ?>
  32. --EXPECT--
  33. Starting...
  34. int(0)
  35. PROBLEM NOT REPRODUCED !