History log of /php-src/ext/opcache/tests/opt/gh11170.phpt (Results 1 – 2 of 2)
Revision Date Author Comments
# 4df85860 27-Jul-2024 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Fix nightly failure in test variation due to number of temp variables varying when observers are enabled


# fbf5216c 30-Apr-2023 nielsdos <7771979+nielsdos@users.noreply.github.com>

Fix too wide OR and AND range inference

There is a typo which causes the AND and OR range inference to infer a
wider range than necessary. Fix this typo. There are many ranges for
wh

Fix too wide OR and AND range inference

There is a typo which causes the AND and OR range inference to infer a
wider range than necessary. Fix this typo. There are many ranges for
which the inference is too wide, I just picked one for AND and one for
OR that I found through symbolic execution.

In this example test, the previous range inferred for test_or was [-27..-1]
instead of [-20..-1].
And the previous range inferred for test_and was [-32..-25]
instead of [-28..-25].

Closes GH-11170.

show more ...