[ARM] Adjust how NEON shifts are lowered
[llvm-core.git] / test / Transforms / ArgumentPromotion / crash.ll
blobd46a48101e78d439b58d2f6a9cb46b9088e25a65
1 ; RUN: opt -S < %s -inline -argpromotion | FileCheck %s
2 ; RUN: opt -S < %s -passes=inline,argpromotion | FileCheck %s
4 %S = type { %S* }
6 ; Inlining should nuke the invoke (and any inlined calls) here even with
7 ; argument promotion running along with it.
8 define void @zot() personality i32 (...)* @wibble {
9 ; CHECK-LABEL: define void @zot() personality i32 (...)* @wibble
10 ; CHECK-NOT: call
11 ; CHECK-NOT: invoke
12 bb:
13   invoke void @hoge()
14           to label %bb1 unwind label %bb2
16 bb1:
17   unreachable
19 bb2:
20   %tmp = landingpad { i8*, i32 }
21           cleanup
22   unreachable
25 define internal void @hoge() {
26 bb:
27   %tmp = call fastcc i8* @spam(i1 (i8*)* @eggs)
28   %tmp1 = call fastcc i8* @spam(i1 (i8*)* @barney)
29   unreachable
32 define internal fastcc i8* @spam(i1 (i8*)* %arg) {
33 bb:
34   unreachable
37 define internal i1 @eggs(i8* %arg) {
38 bb:
39   %tmp = call zeroext i1 @barney(i8* %arg)
40   unreachable
43 define internal i1 @barney(i8* %arg) {
44 bb:
45   ret i1 undef
48 define i32 @test_inf_promote_caller(i32 %arg) {
49 ; CHECK-LABEL: define i32 @test_inf_promote_caller(
50 bb:
51   %tmp = alloca %S
52   %tmp1 = alloca %S
53   %tmp2 = call i32 @test_inf_promote_callee(%S* %tmp, %S* %tmp1)
54 ; CHECK: call i32 @test_inf_promote_callee(%S* %{{.*}}, %S* %{{.*}})
56   ret i32 0
59 define internal i32 @test_inf_promote_callee(%S* %arg, %S* %arg1) {
60 ; CHECK-LABEL: define internal i32 @test_inf_promote_callee(
61 ; CHECK: %S* %{{.*}}, %S* %{{.*}})
62 bb:
63   %tmp = getelementptr %S, %S* %arg1, i32 0, i32 0
64   %tmp2 = load %S*, %S** %tmp
65   %tmp3 = getelementptr %S, %S* %arg, i32 0, i32 0
66   %tmp4 = load %S*, %S** %tmp3
67   %tmp5 = call i32 @test_inf_promote_callee(%S* %tmp4, %S* %tmp2)
68 ; CHECK: call i32 @test_inf_promote_callee(%S* %{{.*}}, %S* %{{.*}})
70   ret i32 0
73 declare i32 @wibble(...)