diff options
Diffstat (limited to 'llvm/utils/update_cc_test_checks.py')
-rwxr-xr-x | llvm/utils/update_cc_test_checks.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/utils/update_cc_test_checks.py b/llvm/utils/update_cc_test_checks.py index 952f48e5941..e251ff0b8f5 100755 --- a/llvm/utils/update_cc_test_checks.py +++ b/llvm/utils/update_cc_test_checks.py @@ -28,8 +28,6 @@ from UpdateTestChecks import asm, common ADVERT = '// NOTE: Assertions have been autogenerated by ' -CHECK_RE = re.compile(r'^\s*//\s*([^:]+?)(?:-NEXT|-NOT|-DAG|-LABEL)?:') - SUBST = { '%clang': [], '%clang_cc1': ['-cc1'], @@ -238,7 +236,7 @@ def main(): input_lines = [] with open(filename, 'r+') as f: for line in f: - m = CHECK_RE.match(line) + m = common.CHECK_RE.match(line) if not (m and m.group(1) in prefix_set) and line != '//\n': input_lines.append(line) f.seek(0) |