Nikita Popov 63dc31b68b Reapply [IR] Avoid creating icmp/fcmp constant expressions (#92885)
Reapply after https://github.com/llvm/llvm-project/pull/93548,
which should address the lldb failure on macos.

-----

Do not create icmp/fcmp constant expressions in IRBuilder etc anymore,
i.e. treat them as "undesirable". This is in preparation for removing
them entirely.

Part of:
https://discourse.llvm.org/t/rfc-remove-most-constant-expressions/63179
2024-05-31 08:55:59 +02:00

30 lines
884 B
LLVM

; RUN: opt -passes=jump-threading < %s -S -o - | FileCheck %s
; Reproducer for PR47297.
; The pass did previously not report a correct Modified status in the case
; where a terminator's condition was successfully constant folded, but there
; were no other transformations done. This was caught by the pass return
; status check that is hidden under EXPENSIVE_CHECKS.
; CHECK-LABEL: entry:
; CHECK-NEXT: %.not = icmp eq i32 ptrtoint (ptr @a to i32), 0
; CHECK-NEXT: br i1 %.not, label %overflow, label %cont
@a = internal global i16 0
define void @foo(i16 %d) {
entry:
%.not = icmp eq i32 ptrtoint (ptr @a to i32), 0
br i1 %.not, label %overflow, label %cont
overflow: ; preds = %entry
call void @bar()
br label %cont
cont: ; preds = %overflow, %entry
ret void
}
declare void @bar()