aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/FunctionAttrs
diff options
context:
space:
mode:
authorEli Friedman <eli.friedman@gmail.com>2011-08-16 01:28:22 +0000
committerEli Friedman <eli.friedman@gmail.com>2011-08-16 01:28:22 +0000
commit2199dfb0e6b98fdce0a3c863eb84d466d426b968 (patch)
tree1a0d73151aaa4e9664155657b3e833f123a89748 /test/Transforms/FunctionAttrs
parent89a01a0cbd86979b62a3570547c2c7308a3741c7 (diff)
downloadexternal_llvm-2199dfb0e6b98fdce0a3c863eb84d466d426b968.zip
external_llvm-2199dfb0e6b98fdce0a3c863eb84d466d426b968.tar.gz
external_llvm-2199dfb0e6b98fdce0a3c863eb84d466d426b968.tar.bz2
Revert a bit of r137667; the logic in question can safely handle atomic load/store.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@137702 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/FunctionAttrs')
-rw-r--r--test/Transforms/FunctionAttrs/atomic.ll21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/Transforms/FunctionAttrs/atomic.ll b/test/Transforms/FunctionAttrs/atomic.ll
new file mode 100644
index 0000000..62f8fa5
--- /dev/null
+++ b/test/Transforms/FunctionAttrs/atomic.ll
@@ -0,0 +1,21 @@
+; RUN: opt -basicaa -functionattrs -S < %s | FileCheck %s
+
+; 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 {
+entry:
+ %x.addr = alloca i32, align 4
+ store atomic i32 %x, i32* %x.addr seq_cst, align 4
+ %r = load atomic i32* %x.addr seq_cst, align 4
+ ret i32 %r
+}
+
+; A function with an Acquire load is not readonly.
+define i32 @test2(i32* %x) uwtable ssp {
+; CHECK: define i32 @test2(i32 %x) uwtable ssp {
+entry:
+ %r = load atomic i32* %x seq_cst, align 4
+ ret i32 %r
+}
+