[InstCombine] Signed saturation patterns
[llvm-core.git] / test / Transforms / Reassociate / erase_inst_made_change.ll
blobfebb9447e2b43d8699953f80d59aae2f7b231994
1 ; RUN: opt < %s -inline -reassociate -S | FileCheck %s
3 ; This test case exposed a bug in reassociate where EraseInst's
4 ; removal of a dead call wasn't recognized as changing the IR.
5 ; So when runOnFunction propagated the "made changes" upwards
6 ; to the CallGraphSCCPass it signalled that no changes had been
7 ; made, so CallGraphSCCPass assumed that the old CallGraph,
8 ; as known by that pass manager, still was up-to-date.
10 ; This was detected as an assert when trying to remove the
11 ; no longer used function 'bar' (due to incorrect reference
12 ; count in the CallGraph).
14 define void @foo() {
15 ; CHECK-LABEL: @foo(
16 ; CHECK-NEXT:  entry:
17 ; CHECK-NEXT:    ret void
18 entry:
19   call void @bar()
20   ret void
23 define internal void @bar() noinline nounwind readnone {
24 ; CHECK-NOT: bar
25 entry:
26   ret void