[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / llvm / test / Transforms / PruneEH / pr23971.ll
blobf50898aefe167244f149eaa1cd33d1b9b31f289e
1 ; RUN: opt -S -prune-eh -enable-new-pm=0 < %s | FileCheck %s
2 ; RUN: opt -S -passes='function-attrs,function(simplifycfg)' < %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 }