1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

[update_cc_test_checks.py] Fix invalid python string escape sequence

This works with current python version but will be an error with 3.9
This commit is contained in:
Alex Richardson 2019-10-30 09:17:29 +00:00
parent d179aa00b3
commit 4c2f38b670

View File

@ -29,7 +29,7 @@ from UpdateTestChecks import asm, common
ADVERT = '// NOTE: Assertions have been autogenerated by '
CHECK_RE = re.compile(r'^\s*//\s*([^:]+?)(?:-NEXT|-NOT|-DAG|-LABEL)?:')
RUN_LINE_RE = re.compile('^//\s*RUN:\s*(.*)$')
RUN_LINE_RE = re.compile(r'^//\s*RUN:\s*(.*)$')
SUBST = {
'%clang': [],