[ARM] Better OR's for MVE compares
[llvm-core.git] / test / Transforms / Inline / pr26698.ll
blob6d5873ff1bcb3250ea3e8dea85601f7779f145d9
1 ; RUN: opt -S -inline -inline-threshold=100 -inline-cold-callsite-threshold=100 < %s | FileCheck %s
2 ; RUN: opt -S -passes='cgscc(inline)' -inline-threshold=100 -inline-cold-callsite-threshold=100 < %s | FileCheck %s
3 target datalayout = "e-m:x-p:32:32-i64:64-f80:32-n8:16:32-a:0:32-S32"
4 target triple = "i686-pc-windows-msvc18.0.0"
6 declare void @g(i32)
8 define void @f() personality i32 (...)* @__CxxFrameHandler3 {
9 entry:
10   invoke void @g(i32 0)
11           to label %invoke.cont unwind label %cs.bb
13 invoke.cont:
14   ret void
16 cs.bb:
17   %cs = catchswitch within none [label %cp.bb] unwind label %cleanup.bb
19 cp.bb:
20   %cpouter1 = catchpad within %cs [i8* null, i32 0, i8* null]
21   call void @dtor() #1 [ "funclet"(token %cpouter1) ]
22   catchret from %cpouter1 to label %invoke.cont
24 cleanup.bb:
25   %cpouter2 = cleanuppad within none []
26   call void @g(i32 1) [ "funclet"(token %cpouter2) ]
27   cleanupret from %cpouter2 unwind to caller
30 declare i32 @__CxxFrameHandler3(...)
32 ; Function Attrs: nounwind
33 define internal void @dtor() #1 personality i32 (...)* @__CxxFrameHandler3 {
34 entry:
35   invoke void @g(i32 2)
36           to label %invoke.cont unwind label %ehcleanup1
38 invoke.cont:
39   ret void
41 ehcleanup1:
42   %cpinner1 = cleanuppad within none []
43   invoke void @g(i32 3) [ "funclet" (token %cpinner1) ]
44           to label %done unwind label %ehcleanup2
45 done:
46   unreachable
48 ehcleanup2:
49   %cpinner2 = cleanuppad within %cpinner1 []
50   call void @g(i32 4) [ "funclet" (token %cpinner2) ]
51   cleanupret from %cpinner2 unwind to caller
54 ; CHECK-LABEL: define void @f(
56 ; CHECK:      %[[cs:.*]] = catchswitch within none
58 ; CHECK:      %[[cpouter1:.*]] = catchpad within %[[cs]]
60 ; CHECK:      %[[cpinner1:.*]] = cleanuppad within %[[cpouter1]]
62 ; CHECK:      %[[cpinner2:.*]] = cleanuppad within %[[cpinner1]]
63 ; CHECK-NEXT: call void @g(i32 4) #0 [ "funclet"(token %[[cpinner2]]) ]
64 ; CHECK-NEXT: unreachable
66 attributes #1 = { nounwind }