1--TEST-- 2Bug GH-8591 001 (JIT does not account for class re-compile) 3--EXTENSIONS-- 4opcache 5--INI-- 6opcache.enable=1 7opcache.enable_cli=1 8opcache.jit=1255 9opcache.file_update_protection=0 10opcache.revalidate_freq=0 11opcache.protect_memory=1 12--FILE-- 13<?php 14 15// Checks that JITed code does not crash in --repeat 2 after the AbstractModel 16// class is recompiled and Model is re-linked. 17 18require __DIR__ . '/gh8591-005.inc'; 19 20class Model extends AbstractModel 21{ 22 public function __construct() 23 { 24 for ($i = 0; $i < 10; $i++) { 25 $this->cast(); 26 } 27 } 28} 29 30new Model(); 31 32// mark the file as changed (important) 33touch(__DIR__ . '/gh8591-005.inc'); 34 35var_dump($x); 36 37print "OK"; 38?> 39--EXPECT-- 40int(1) 41OK 42