Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Transforms / Inline / AArch64 / inline-target-attr.ll
blob636f3c6600f8d4c6ae23588b40a60c6dc89b764d
1 ; RUN: opt < %s -mtriple=aarch64-unknown-linux-gnu -S -passes=inline | FileCheck %s
2 ; RUN: opt < %s -mtriple=aarch64-unknown-linux-gnu -S -passes='cgscc(inline)' | FileCheck %s
3 ; Check that we only inline when we have compatible target attributes.
5 define i32 @foo() #0 {
6 entry:
7   %call = call i32 (...) @baz()
8   ret i32 %call
9 ; CHECK-LABEL: foo
10 ; CHECK: call i32 (...) @baz()
12 declare i32 @baz(...) #0
14 define i32 @bar() #1 {
15 entry:
16   %call = call i32 @foo()
17   ret i32 %call
18 ; CHECK-LABEL: bar
19 ; CHECK: call i32 (...) @baz()
22 define i32 @qux() #0 {
23 entry:
24   %call = call i32 @bar()
25   ret i32 %call
26 ; CHECK-LABEL: qux
27 ; CHECK: call i32 @bar()
30 define i32 @strict_align() #2 {
31 entry:
32   %call = call i32 @foo()
33   ret i32 %call
34 ; CHECK-LABEL: strict_align
35 ; CHECK: call i32 (...) @baz()
38 attributes #0 = { "target-cpu"="generic" "target-features"="+crc,+neon" }
39 attributes #1 = { "target-cpu"="generic" "target-features"="+crc,+neon,+crypto" }
40 attributes #2 = { "target-cpu"="generic" "target-features"="+crc,+neon,+strict-align" }