Revert "[InstCombine] Support gep nuw in icmp folds" (#118698)
[llvm-project.git] / llvm / test / Transforms / InstCombine / 2003-08-12-AllocaNonNull.ll
blob1859d2d73e93e9febd0a49cdc0bfd4659592dfc9
1 ; This testcase can be simplified by "realizing" that alloca can never return
2 ; null.
3 ; RUN: opt < %s -passes=instcombine,simplifycfg -simplifycfg-require-and-preserve-domtree=1 -S | FileCheck %s
4 ; CHECK-NOT: br
6 declare i32 @bitmap_clear(...)
8 define i32 @oof() {
9 entry:
10         %live_head = alloca i32         ; <ptr> [#uses=2]
11         %tmp.1 = icmp ne ptr %live_head, null          ; <i1> [#uses=1]
12         br i1 %tmp.1, label %then, label %UnifiedExitNode
14 then:           ; preds = %entry
15         %tmp.4 = call i32 (...) @bitmap_clear( ptr %live_head )               ; <i32> [#uses=0]
16         br label %UnifiedExitNode
18 UnifiedExitNode:                ; preds = %then, %entry
19         ret i32 0