[llvm] [UTC] Don't leave dangling CHECK-SAME when removing CHECK lines (PR #82569)

Henrik G. Olsson via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 23 10:33:22 PST 2024


================
@@ -388,7 +388,11 @@ def itertests(
 
 
 def should_add_line_to_output(
-    input_line, prefix_set, skip_global_checks=False, comment_marker=";"
+    input_line,
+    prefix_set,
+    skip_global_checks=False,
+    skip_same_checks=False,
+    comment_marker=";",
----------------
hnrklssn wrote:

Yeah, the call in `update_test_checks.py` is the only one passing anything other than `input_line` and `prefix_set`. The comment marker is always `";"` currently.

https://github.com/llvm/llvm-project/pull/82569


More information about the llvm-commits mailing list