[ARM] Better OR's for MVE compares
[llvm-core.git] / test / Transforms / Inline / AArch64 / inline-target-attr.ll
blobaf87ff6e7404d586b80e7d452ae832788fe141f0
1 ; RUN: opt < %s -mtriple=aarch64-unknown-linux-gnu -S -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" }