Skip to content

Commit 1388562

Browse files
committed
[SimplifyCFG] branch-fold-threshold.ll - fix broken CHECKs
Fix typos in AGGRESIVE-->AGGRESSIVE + WAYAGGRESIVE->WAYAGGRESSIVE This also exposed an issue that the WAYAGGRESSIVE run removed a block entirely, so the LABEL check was silently failing. Noticed while triaging the failures on #93673
1 parent 0e62d5c commit 1388562

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/test/Transforms/SimplifyCFG/branch-fold-threshold.ll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ lor.lhs.false:
6767
%cmp1 = icmp slt i32 %add, %b
6868
br i1 %cmp1, label %cond.false, label %cond.end
6969
; NORMAL-LABEL: lor.lhs.false:
70-
; AGGRESIVE-LABEL: lor.lhs.false:
71-
; WAYAGGRESIVE-LABEL: lor.lhs.false:
70+
; AGGRESSIVE-LABEL: lor.lhs.false:
71+
; WAYAGGRESSIVE-LABEL-NOT: lor.lhs.false:
7272
; NORMAL: br i1
7373
; AGGRESSIVE: br i1
7474
; WAYAGGRESSIVE-NOT: br i1

0 commit comments

Comments
 (0)