1--TEST--
2Register Alloction 005: Incorrect double/long register hinting
3--INI--
4opcache.enable=1
5opcache.enable_cli=1
6opcache.file_update_protection=0
7opcache.jit_buffer_size=1M
8--FILE--
9<?php
10function test() {
11	$j = 0;
12    for ($i = 1; $i < 10; $i++) {
13        $i = 0.0;
14        $j++;
15        if ($j > 10) break;
16    }
17}
18test();
19?>
20DONE
21--EXPECT--
22DONE