[llvm] [DA] remove wrap-around check from affine definition (PR #116632)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 20 08:09:44 PST 2025
================
@@ -0,0 +1,44 @@
+; NOTE: Assertions have been autogenerated by utils/update_analyze_test_checks.py UTC_ARGS: --version 5
+; RUN: opt < %s -disable-output "-passes=print<da>" -aa-pipeline=basic-aa 2>&1 \
+; RUN: | FileCheck %s
+
+; Check that the testcase does not crash the compiler.
+; See https://github.com/llvm/llvm-project/issues/51512 for details.
+
+define void @foo() {
+; CHECK-LABEL: 'foo'
+; CHECK-NEXT: Src: store i32 42, ptr %getelementptr, align 1 --> Dst: store i32 42, ptr %getelementptr, align 1
+; CHECK-NEXT: da analyze - consistent output [0 S]!
+; CHECK-NEXT: Src: store i32 42, ptr %getelementptr, align 1 --> Dst: store i32 0, ptr %getelementptr5, align 1
+; CHECK-NEXT: da analyze - output [0 *|<]!
+; CHECK-NEXT: Src: store i32 0, ptr %getelementptr5, align 1 --> Dst: store i32 0, ptr %getelementptr5, align 1
+; CHECK-NEXT: da analyze - none!
+;
+bb:
+ %alloca = alloca [2 x [5 x i32]], align 1
+ br label %bb1
+
+bb1: ; preds = %bb7, %bb
----------------
fhahn wrote:
Would be good to have more descriptive names for the block make the test easier to read, e.g. `bb1 -> loop.header,`, `bb7 -> loop.latch).
https://github.com/llvm/llvm-project/pull/116632
More information about the llvm-commits
mailing list