llvm-project/llvm/test/Transforms/LoopVectorize/demanded-bits-of-pointer-instruction.ll
David Sherwood 7b3fe5fd42
[LV][NFC] Remove undef values in some test cases (#164401)
Split off from PR #163525, this standalone patch replaces simple cases
where undef is used as a value for arithmetic or getelementptr
instructions. This will reduce the likelihood of contributors hitting
the `undef deprecator` warning in github.
2025-11-05 09:18:02 +00:00

21 lines
490 B
LLVM

; RUN: opt < %s -passes=loop-vectorize -S | FileCheck %s
; getDemandedBits() is called on the pointer-typed GEP instruction here.
; Only make sure we do not crash.
; CHECK: @test
define void @test(i8 %v, ptr %ptr, ptr %ptr_end) {
start:
br label %loop
loop:
%ptr2 = phi ptr [ %ptr3, %loop ], [ %ptr, %start ]
%x = sext i8 %v to i64
%ptr3 = getelementptr inbounds i8, ptr %ptr2, i64 1
%cmp = icmp ult ptr %ptr3, %ptr_end
br i1 %cmp, label %loop, label %end
end:
ret void
}