1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
3 ; RUN: opt -debug-counter=predicateinfo-rename-skip=1,predicateinfo-rename-count=1 -print-predicateinfo -analyze < %s 2>&1 | FileCheck %s
4 ;; Test that, with debug counters on, we don't rename the first info, only the second
5 define fastcc void @barney() {
6 ; CHECK-LABEL: @barney(
8 ; CHECK-NEXT: br label [[BB22:%.*]]
10 ; CHECK-NEXT: [[TMP23:%.*]] = icmp eq i32 undef, 2
11 ; CHECK: [[TMP23_0:%.*]] = call i1 @llvm.ssa.copy.{{.+}}(i1 [[TMP23]])
12 ; CHECK-NEXT: br i1 [[TMP23]], label [[BB29:%.*]], label [[BB35:%.*]]
14 ; CHECK: [[TMP23_0_1:%.*]] = call i1 @llvm.ssa.copy.{{.+}}(i1 [[TMP23_0]])
15 ; CHECK-NEXT: br i1 [[TMP23]], label [[BB33:%.*]], label [[BB35]]
17 ; CHECK-NEXT: br i1 [[TMP23_0_1]], label [[BB35]], label [[BB35]]
19 ; CHECK-NEXT: unreachable
24 %tmp23 = icmp eq i32 undef, 2
25 br i1 %tmp23, label %bb29, label %bb35
29 ;; We will not rename this one (we will still generate a copy of a copy for the next one)
30 br i1 %tmp23, label %bb33, label %bb35
34 ;; We will rename this one
35 br i1 %tmp23, label %bb35, label %bb35
37 bb35: ; preds = %bb33, %bb29, %bb22