[LLVM][IR] Use splat syntax when printing ConstantExpr based splats. (#116856)
[llvm-project.git] / llvm / test / Transforms / LowerInvoke / lowerinvoke.ll
blob0ffc27ee40f94343efe0d4cac2b40098ef3ae899
1 ; RUN: opt < %s -passes=lower-invoke -S | FileCheck %s
2 ; RUN: opt < %s -passes='lower-invoke' -S | FileCheck %s
4 declare i32 @external_func(i64 %arg)
6 define i32 @invoke_test(i64 %arg) personality ptr null {
7 entry:
8   %result = invoke fastcc i32 @external_func(i64 inreg %arg)
9       to label %cont unwind label %lpad
10 cont:
11   ret i32 %result
12 lpad:
13   %phi = phi i32 [ 99, %entry ]
14   %lp = landingpad { ptr, i32 } cleanup
15   ret i32 %phi
18 ; The "invoke" should be converted to a "call".
19 ; CHECK-LABEL: define i32 @invoke_test
20 ; CHECK: %result = call fastcc i32 @external_func(i64 inreg %arg)
21 ; CHECK-NEXT: br label %cont
23 ; Note that this pass does not remove dead landingpad blocks.
24 ; CHECK: lpad:
25 ; CHECK-NOT: phi
26 ; CHECK: landingpad