diff options
author | Sanjoy Das <sanjoy@playingwithpointers.com> | 2015-11-07 01:56:00 +0000 |
---|---|---|
committer | Sanjoy Das <sanjoy@playingwithpointers.com> | 2015-11-07 01:56:00 +0000 |
commit | 71fe81fd2502fda03249bd1eb242ea7ddb3fc5ee (patch) | |
tree | 9babfa6b1526816cf833c5acc005a9d07b078052 /llvm/test/Feature/OperandBundles/function-attrs.ll | |
parent | 436e2397f8ce4802793c27dac37b88427bc52c90 (diff) | |
download | bcm5719-llvm-71fe81fd2502fda03249bd1eb242ea7ddb3fc5ee.tar.gz bcm5719-llvm-71fe81fd2502fda03249bd1eb242ea7ddb3fc5ee.zip |
[FunctionAttrs] Add handling for operand bundles
Summary:
Teach the FunctionAttrs to do the right thing for IR with operand
bundles.
Reviewers: reames, chandlerc
Subscribers: llvm-commits
Differential Revision: http://reviews.llvm.org/D14408
llvm-svn: 252387
Diffstat (limited to 'llvm/test/Feature/OperandBundles/function-attrs.ll')
-rw-r--r-- | llvm/test/Feature/OperandBundles/function-attrs.ll | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/llvm/test/Feature/OperandBundles/function-attrs.ll b/llvm/test/Feature/OperandBundles/function-attrs.ll new file mode 100644 index 00000000000..3d429b3e9d9 --- /dev/null +++ b/llvm/test/Feature/OperandBundles/function-attrs.ll @@ -0,0 +1,24 @@ +; RUN: opt -S -functionattrs < %s | FileCheck %s + +declare void @f_readonly() readonly +declare void @f_readnone() readnone + +define void @test_0(i32* %x) { +; FunctionAttrs must not infer readonly / readnone for %x + +; CHECK-LABEL: define void @test_0(i32* %x) { + entry: + ; CHECK: call void @f_readonly() [ "foo"(i32* %x) ] + call void @f_readonly() [ "foo"(i32* %x) ] + ret void +} + +define void @test_1(i32* %x) { +; FunctionAttrs must not infer readonly / readnone for %x + +; CHECK-LABEL: define void @test_1(i32* %x) { + entry: + ; CHECK: call void @f_readnone() [ "foo"(i32* %x) ] + call void @f_readnone() [ "foo"(i32* %x) ] + ret void +} |