Skip to content

Commit a6893f9

Browse files
authored
[DA] Regenerate test checks (NFC) (#166736)
To avoid noise by other changes.
1 parent 875646b commit a6893f9

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed

llvm/test/Analysis/DependenceAnalysis/same-sd-for-diff-becount-type-loops.ll

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1+
; NOTE: Assertions have been autogenerated by utils/update_analyze_test_checks.py UTC_ARGS: --version 6
12
; RUN: opt < %s -disable-output "-passes=print<da>" -aa-pipeline=basic-aa 2>&1 | FileCheck %s
23

34
define void @f1() {
45
; CHECK-LABEL: 'f1'
5-
; CHECK-NEXT: Src: store i32 0, ptr null, align 4 --> Dst: store i32 0, ptr null, align 4
6+
; CHECK-NEXT: Src: store i32 0, ptr null, align 4 --> Dst: store i32 0, ptr null, align 4
67
; CHECK-NEXT: da analyze - consistent output [S]!
7-
; CHECK-NEXT: Src: store i32 0, ptr null, align 4 --> Dst: %2 = load i32, ptr null, align 4
8+
; CHECK-NEXT: Src: store i32 0, ptr null, align 4 --> Dst: %2 = load i32, ptr null, align 4
89
; CHECK-NEXT: da analyze - consistent flow [|<]!
9-
; CHECK-NEXT: Src: %2 = load i32, ptr null, align 4 --> Dst: %2 = load i32, ptr null, align 4
10+
; CHECK-NEXT: Src: %2 = load i32, ptr null, align 4 --> Dst: %2 = load i32, ptr null, align 4
1011
; CHECK-NEXT: da analyze - consistent input [S]!
1112
;
1213
entry:
@@ -34,11 +35,11 @@ exit: ; preds = %for.2.body
3435

3536
define void @f2() {
3637
; CHECK-LABEL: 'f2'
37-
; CHECK-NEXT: Src: store i32 0, ptr null, align 4 --> Dst: store i32 0, ptr null, align 4
38+
; CHECK-NEXT: Src: store i32 0, ptr null, align 4 --> Dst: store i32 0, ptr null, align 4
3839
; CHECK-NEXT: da analyze - consistent output [S]!
39-
; CHECK-NEXT: Src: store i32 0, ptr null, align 4 --> Dst: %3 = load i32, ptr null, align 4
40-
; CHECK-NEXT: da analyze - flow [|<] / assuming 1 loop level(s) fused: [S|<]!
41-
; CHECK-NEXT: Src: %3 = load i32, ptr null, align 4 --> Dst: %3 = load i32, ptr null, align 4
40+
; CHECK-NEXT: Src: store i32 0, ptr null, align 4 --> Dst: %3 = load i32, ptr null, align 4
41+
; CHECK-NEXT: da analyze - flow [|<] / assuming 1 loop level(s) fused: [S|<]!
42+
; CHECK-NEXT: Src: %3 = load i32, ptr null, align 4 --> Dst: %3 = load i32, ptr null, align 4
4243
; CHECK-NEXT: da analyze - consistent input [S]!
4344
;
4445
entry:

llvm/test/Analysis/DependenceAnalysis/symbolic-rdiv-overflow.ll

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
; FIXME: DependenceAnalysis currently detects no dependency between the two
1414
; stores, but it does exist. For example, each store will access A[0] when i
1515
; is 1 and 0 respectively.
16-
; The root cause is that the product of the BTC and the coefficient
16+
; The root cause is that the product of the BTC and the coefficient
1717
; ((1LL << 62) - 1 and 2) overflows in a signed sense.
1818
define void @symbolicrdiv_prod_ovfl(ptr %A) {
1919
; CHECK-ALL-LABEL: 'symbolicrdiv_prod_ovfl'
@@ -75,10 +75,10 @@ exit:
7575
; FIXME: DependenceAnalysis currently detects no dependency between the two
7676
; stores, but it does exist. For example,
7777
;
78-
; memory access | i == 2^61 | i == 2^61 + 2^59 | i == 2^61 + 2^60
78+
; memory access | i == 2^61 | i == 2^61 + 2^59 | i == 2^61 + 2^60
7979
; -------------------------|-----------|------------------|-------------------
80-
; A[2*i - 2^62] (offset0) | | A[2^60] | A[2^61]
81-
; A[-i + 2^62] (offset1) | A[2^61] | | A[2^60]
80+
; A[2*i - 2^62] (offset0) | | A[2^60] | A[2^61]
81+
; A[-i + 2^62] (offset1) | A[2^61] | | A[2^60]
8282
;
8383
; The root cause is that the calculation of the differenct between the two
8484
; constants (-2^62 and 2^62) overflows in a signed sense.

0 commit comments

Comments
 (0)