[PATCH] D154825: [InstCombine][NFC] Rename check run label
Piotr Sobczak via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Jul 10 02:38:40 PDT 2023
piotr created this revision.
Herald added a project: All.
piotr requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.
The existing check run label "DEFAULT" may clash with
the label from switch "DEFAULT", so renaming it for clarity.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D154825
Files:
llvm/test/Transforms/InstCombine/unreachable-code.ll
Index: llvm/test/Transforms/InstCombine/unreachable-code.ll
===================================================================
--- llvm/test/Transforms/InstCombine/unreachable-code.ll
+++ llvm/test/Transforms/InstCombine/unreachable-code.ll
@@ -1,5 +1,5 @@
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 2
-; RUN: opt -S -passes=instcombine -instcombine-infinite-loop-threshold=2 < %s | FileCheck %s --check-prefixes=CHECK,DEFAULT
+; RUN: opt -S -passes=instcombine -instcombine-infinite-loop-threshold=2 < %s | FileCheck %s --check-prefixes=CHECK,DEFAULT_ITER
; RUN: opt -S -passes='instcombine<max-iterations=1>' < %s | FileCheck %s --check-prefixes=CHECK,MAX1
declare void @dummy()
@@ -272,5 +272,5 @@
ret void
}
;; NOTE: These prefixes are unused and the list is autogenerated. Do not add tests below this line:
-; DEFAULT: {{.*}}
+; DEFAULT_ITER: {{.*}}
; MAX1: {{.*}}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D154825.538556.patch
Type: text/x-patch
Size: 933 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230710/3a50f9bc/attachment.bin>
More information about the llvm-commits
mailing list