xref: /php-src/ext/opcache/tests/jit/loop_001.phpt (revision c16ad918)
1--TEST--
2JIT LOOP: 001
3--INI--
4opcache.enable=1
5opcache.enable_cli=1
6opcache.file_update_protection=0
7;opcache.jit_debug=257
8--EXTENSIONS--
9opcache
10--FILE--
11<?php
12function foo($n) {
13  $res = 0;
14  for ($i = 1; $i < $n; $i++)
15    $res = $res + $i;
16  return $res;
17}
18print foo(5);
19?>
20--EXPECT--
2110
22