diff options
Diffstat (limited to 'llvm/utils/UpdateTestChecks/common.py')
-rw-r--r-- | llvm/utils/UpdateTestChecks/common.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/llvm/utils/UpdateTestChecks/common.py b/llvm/utils/UpdateTestChecks/common.py index 85c1294..eb212ed 100644 --- a/llvm/utils/UpdateTestChecks/common.py +++ b/llvm/utils/UpdateTestChecks/common.py @@ -569,7 +569,7 @@ ANALYZE_FUNCTION_RE = re.compile( flags=(re.X | re.S), ) -LV_DEBUG_RE = re.compile( +LOOP_PASS_DEBUG_RE = re.compile( r"^\s*\'(?P<func>[\w.$-]+?)\'[^\n]*" r"\s*\n(?P<body>.*)$", flags=(re.X | re.S) ) @@ -973,6 +973,7 @@ class NamelessValue: name (as in e.g. `@some_global` or `%x`) or just a number (as in e.g. `%12` or `!4`). """ + def __init__( self, check_prefix, @@ -1635,8 +1636,9 @@ def generalize_check_lines( regexp = ginfo.get_regexp() multiple_braces_re = re.compile(r"({{+)|(}}+)") + def escape_braces(match_obj): - return '{{' + re.escape(match_obj.group(0)) + '}}' + return "{{" + re.escape(match_obj.group(0)) + "}}" if ginfo.is_ir(): for i, line in enumerate(lines): |