AMDGPU: Allow f16/bf16 for DS_READ_TR16_B64 gfx950 builtins (#118297)
[llvm-project.git] / llvm / test / Transforms / Inline / inline-optnone.ll
blobb8f9a23a3e7084674b5e831aec9c32043afec764
1 ; RUN: opt < %s -passes=inline -S | FileCheck %s
2 ; RUN: opt < %s --passes=inline -S | FileCheck %s
4 ; Test that functions with attribute optnone are not inlined.
5 ; Also test that only functions with attribute alwaysinline are
6 ; valid candidates for inlining if the caller has the optnone attribute.
8 ; Function Attrs: alwaysinline nounwind readnone uwtable
9 define i32 @alwaysInlineFunction(i32 %a) #0 {
10 entry:
11   %mul = mul i32 %a, %a
12   ret i32 %mul
15 ; Function Attrs: nounwind readnone uwtable
16 define i32 @simpleFunction(i32 %a) #1 {
17 entry:
18   %add = add i32 %a, %a
19   ret i32 %add
22 ; Function Attrs: nounwind noinline optnone readnone uwtable
23 define i32 @OptnoneFunction(i32 %a) #2 {
24 entry:
25   %0 = tail call i32 @alwaysInlineFunction(i32 %a)
26   %1 = tail call i32 @simpleFunction(i32 %a)
27   %add = add i32 %0, %1
28   ret i32 %add
31 ; CHECK-LABEL: @OptnoneFunction
32 ; CHECK-NOT: call i32 @alwaysInlineFunction(i32 %a)
33 ; CHECK: call i32 @simpleFunction(i32 %a)
34 ; CHECK: ret
36 ; Function Attrs: nounwind readnone uwtable
37 define i32 @bar(i32 %a) #1 {
38 entry:
39   %0 = tail call i32 @OptnoneFunction(i32 5)
40   %1 = tail call i32 @simpleFunction(i32 6)
41   %add = add i32 %0, %1
42   ret i32 %add
45 ; CHECK-LABEL: @bar
46 ; CHECK: call i32 @OptnoneFunction(i32 5)
47 ; CHECK-NOT: call i32 @simpleFunction(i32 6)
48 ; CHECK: ret
51 attributes #0 = { alwaysinline nounwind readnone uwtable }
52 attributes #1 = { nounwind readnone uwtable }
53 attributes #2 = { nounwind noinline optnone readnone uwtable }