aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qv4regexp
Commit message (Collapse)AuthorAgeFilesLines
* When matching RegExps catch JIT failuresUlf Hermann2019-01-092-0/+61
The Yarr JIT can generate code that fails to evaluate the RegExp at runtime. In that case we need to fall back to the interpreter. Also, don't needlessly cast the unsigned return value of RegExp::match to signed int before range-checking it. And fix some typos in the comments for the disassembler dumps. Fixes: QTBUG-72879 Change-Id: Ic8f80c076d6461d714816a9f66e1cac1d9b0c7a8 Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>