From 7549524ac541e0366f16d2bb9f37de7607fdde29 Mon Sep 17 00:00:00 2001 From: Mircea Trofin Date: Mon, 15 Feb 2021 08:41:26 -0800 Subject: [PATCH] [NFC] Remove spurious ';' on return line in python code --- llvm/utils/UpdateTestChecks/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): -- 2.7.4