diff options
Diffstat (limited to 'llvm/utils')
-rwxr-xr-x | llvm/utils/update_mir_test_checks.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/llvm/utils/update_mir_test_checks.py b/llvm/utils/update_mir_test_checks.py index 83199c8a6b3..e6c16718059 100755 --- a/llvm/utils/update_mir_test_checks.py +++ b/llvm/utils/update_mir_test_checks.py @@ -33,9 +33,12 @@ MIR_FUNC_NAME_RE = re.compile(r' *name: *(?P<func>[A-Za-z0-9_.-]+)') MIR_BODY_BEGIN_RE = re.compile(r' *body: *\|') MIR_BASIC_BLOCK_RE = re.compile(r' *bb\.[0-9]+.*:$') VREG_RE = re.compile(r'(%[0-9]+)(?::[a-z0-9_]+)?(?:\([<>a-z0-9 ]+\))?') +MI_FLAGS_STR= ( + r'(frame-setup |frame-destroy |nnan |ninf |nsz |arcp |contract |afn ' + r'|reassoc |nuw |nsw |exact |fpexcept )*') VREG_DEF_RE = re.compile( - r'^ *(?P<vregs>{0}(?:, {0})*) ' - r'= (?P<opcode>[A-Zt][A-Za-z0-9_]+)'.format(VREG_RE.pattern)) + r'^ *(?P<vregs>{0}(?:, {0})*) = ' + r'{1}(?P<opcode>[A-Zt][A-Za-z0-9_]+)'.format(VREG_RE.pattern, MI_FLAGS_STR)) MIR_PREFIX_DATA_RE = re.compile(r'^ *(;|bb.[0-9].*: *$|[a-z]+:( |$)|$)') IR_FUNC_NAME_RE = re.compile( |