[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / Feature / OperandBundles / function-attrs.ll
blob4a27425e922b155a630d823a18906611aea22742
1 ; RUN: opt -S -function-attrs < %s -enable-new-pm=0 | FileCheck %s
3 declare void @f_readonly() readonly
4 declare void @f_readnone() readnone
6 define void @test_0(i32* %x) {
7 ; FunctionAttrs must not infer readonly / readnone for %x
9 ; CHECK-LABEL: define void @test_0(i32* %x) #2 {
10  entry:
11  ; CHECK: call void @f_readonly() [ "foo"(i32* %x) ]
12   call void @f_readonly() [ "foo"(i32* %x) ]
13   ret void
16 define void @test_1(i32* %x) {
17 ; FunctionAttrs must not infer readonly / readnone for %x
19 ; CHECK-LABEL: define void @test_1(i32* %x) #3 {
20  entry:
21  ; CHECK: call void @f_readnone() [ "foo"(i32* %x) ]
22   call void @f_readnone() [ "foo"(i32* %x) ]
23   ret void
26 define void @test_2(i32* %x) {
27 ; The "deopt" operand bundle does not capture or write to %x.
29 ; CHECK-LABEL: define void @test_2(i32* nocapture readonly %x)
30  entry:
31   call void @f_readonly() [ "deopt"(i32* %x) ]
32   ret void
35 ; CHECK: attributes #2 = { nofree }
36 ; CHECK: attributes #3 = { nofree nosync }