diff options
Diffstat (limited to 'llvm/utils/update_test_checks.py')
-rwxr-xr-x | llvm/utils/update_test_checks.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/utils/update_test_checks.py b/llvm/utils/update_test_checks.py index e36af398318..19b27859a56 100755 --- a/llvm/utils/update_test_checks.py +++ b/llvm/utils/update_test_checks.py @@ -136,6 +136,8 @@ def genericize_check_lines(lines): lines_with_def = [] vars_seen = [] for line in lines: + # An IR variable named '%.' matches the FileCheck regex string. + line = line.replace('%.', '%dot') m = IR_VALUE_DEF_RE.match(line) if m: vars_seen.append(m.group(1)) |