History log of /PHP-8.2/ext/opcache/tests/jit/verify_return_undef.phpt (Results 1 – 3 of 3)
Revision Date Author Comments
# c16ad918 28-Nov-2023 Daniil Gentili

Change default method of disabling JIT

https://wiki.php.net/rfc/jit_config_defaults
Closes GH-12678


# 2ca142ec 14-Nov-2023 Daniil Gentili

Improve jit tests

Closes GH-12425


# f890c9c5 05-Oct-2021 Nikita Popov

Fix return type verification with undef var

This was loading EG(uninitialized_value) into r0 rather than
FCARG1a.

However, if we fix this issue an existing test fails because

Fix return type verification with undef var

This was loading EG(uninitialized_value) into r0 rather than
FCARG1a.

However, if we fix this issue an existing test fails because
the undef var warning promoted to exception is not caught early
enough, so we need to explicitly check for the exception before
performing the type check.

show more ...