[ARM] Better OR's for MVE compares
[llvm-core.git] / test / Transforms / PruneEH / pr23971.ll
blobe23e8cb51251f964348125ec8beeecb999887842
1 ; RUN: opt -S -prune-eh < %s | FileCheck %s
2 ; RUN: opt -S -passes='function-attrs,function(simplify-cfg)' < %s | FileCheck %s
4 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
5 target triple = "x86_64-unknown-linux-gnu"
7 define void @f() #0 {
8 entry:
9   call void asm sideeffect "ret\0A\09", "~{dirflag},~{fpsr},~{flags}"()
10   unreachable
13 define i32 @g() {
14 entry:
15   call void @f()
16   ret i32 42
19 ; CHECK-LABEL: define i32 @g()
20 ; CHECK: ret i32 42
22 attributes #0 = { naked noinline }