diff options
author | Mircea Trofin <mtrofin@google.com> | 2021-02-15 08:41:26 -0800 |
---|---|---|
committer | Mircea Trofin <mtrofin@google.com> | 2021-02-15 08:42:02 -0800 |
commit | 7549524ac541e0366f16d2bb9f37de7607fdde29 (patch) | |
tree | a7afae672e073e3b9a3fbfc1a2787926ede8c25d /llvm/utils/UpdateTestChecks/common.py | |
parent | ca23b2c8ed2733f0584ca8bc0514b173938f1cdc (diff) | |
download | llvm-7549524ac541e0366f16d2bb9f37de7607fdde29.zip llvm-7549524ac541e0366f16d2bb9f37de7607fdde29.tar.gz llvm-7549524ac541e0366f16d2bb9f37de7607fdde29.tar.bz2 |
[NFC] Remove spurious ';' on return line in python code
Diffstat (limited to 'llvm/utils/UpdateTestChecks/common.py')
-rw-r--r-- | llvm/utils/UpdateTestChecks/common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/UpdateTestChecks/common.py b/llvm/utils/UpdateTestChecks/common.py index 4befaec..0082c4e 100644 --- a/llvm/utils/UpdateTestChecks/common.py +++ b/llvm/utils/UpdateTestChecks/common.py @@ -396,7 +396,7 @@ def get_idx_from_ir_value_match(match): if match.group(i) is not None: return i - first_nameless_group_in_ir_value_match error("Unable to identify the kind of IR value from the match!") - return 0; + return 0 # See get_idx_from_ir_value_match def get_name_from_ir_value_match(match): |