[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / llvm / test / Transforms / InstCombine / cast-call-combine.ll
blobbf70811b6c4bb7d87bdfa18f4b7d98948cda22c9
1 ; RUN: opt < %s -instcombine -always-inline -S | FileCheck %s
3 define internal void @foo(i16*) alwaysinline {
4   ret void
7 define void @bar() noinline noreturn {
8   unreachable
11 define void @test() {
12   br i1 false, label %then, label %else
14 then:
15   call void @bar()
16   unreachable
18 else:
19   ; CHECK-NOT: call
20   call void bitcast (void (i16*)* @foo to void (i8*)*) (i8* null)
21   ret void