aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/FunctionAttrs/atomic.ll
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2013-01-29 03:20:31 +0000
committerBill Wendling <isanbard@gmail.com>2013-01-29 03:20:31 +0000
commit606c8e36dfdd28fc589356addd3e2cbb89a32e4d (patch)
tree5a62f95278b5433f40460890026320b96b2c0f8a /test/Transforms/FunctionAttrs/atomic.ll
parent3a57c37964adfbbf83b4b309a2ceda43ba6d8231 (diff)
downloadexternal_llvm-606c8e36dfdd28fc589356addd3e2cbb89a32e4d.zip
external_llvm-606c8e36dfdd28fc589356addd3e2cbb89a32e4d.tar.gz
external_llvm-606c8e36dfdd28fc589356addd3e2cbb89a32e4d.tar.bz2
Convert getAttributes() to return an AttributeSetNode.
The AttributeSetNode contains all of the attributes. This removes one (hopefully last) use of the Attribute class as a container of multiple attributes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173761 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/FunctionAttrs/atomic.ll')
-rw-r--r--test/Transforms/FunctionAttrs/atomic.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Transforms/FunctionAttrs/atomic.ll b/test/Transforms/FunctionAttrs/atomic.ll
index 7c2bff7..df916e2 100644
--- a/test/Transforms/FunctionAttrs/atomic.ll
+++ b/test/Transforms/FunctionAttrs/atomic.ll
@@ -3,7 +3,7 @@
; Atomic load/store to local doesn't affect whether a function is
; readnone/readonly.
define i32 @test1(i32 %x) uwtable ssp {
-; CHECK: define i32 @test1(i32 %x) uwtable readnone ssp {
+; CHECK: define i32 @test1(i32 %x) readnone ssp uwtable {
entry:
%x.addr = alloca i32, align 4
store atomic i32 %x, i32* %x.addr seq_cst, align 4
@@ -13,7 +13,7 @@ entry:
; A function with an Acquire load is not readonly.
define i32 @test2(i32* %x) uwtable ssp {
-; CHECK: define i32 @test2(i32* nocapture %x) uwtable ssp {
+; CHECK: define i32 @test2(i32* nocapture %x) ssp uwtable {
entry:
%r = load atomic i32* %x seq_cst, align 4
ret i32 %r