Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Transforms / InstCombine / cast-callee-deopt-bundles.ll
blob14ff3ee71094f43aca5d08171cb607aff3683d37
1 ; RUN: opt -passes=instcombine -S < %s | FileCheck %s
3 declare void @foo(i32)
5 define void @g() {
6 ; CHECK-LABEL: @g(
7  entry:
8 ; CHECK: call void @foo(i32 0) [ "deopt"() ]
9   call void @foo ()  [ "deopt"() ]
10   ret void