summaryrefslogtreecommitdiff
path: root/test/Transforms/FunctionAttrs
diff options
context:
space:
mode:
authorEli Friedman <eli.friedman@gmail.com>2011-08-16 01:42:56 +0000
committerEli Friedman <eli.friedman@gmail.com>2011-08-16 01:42:56 +0000
commit34fd67c7bc5ec3c616fcb561315faca63408d1ba (patch)
treef3041aff80b32c625db45f81a942a58147a51f5c /test/Transforms/FunctionAttrs
parent2199dfb0e6b98fdce0a3c863eb84d466d426b968 (diff)
downloadllvm-34fd67c7bc5ec3c616fcb561315faca63408d1ba.tar.gz
llvm-34fd67c7bc5ec3c616fcb561315faca63408d1ba.tar.bz2
llvm-34fd67c7bc5ec3c616fcb561315faca63408d1ba.tar.xz
Fix test.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@137703 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/FunctionAttrs')
-rw-r--r--test/Transforms/FunctionAttrs/atomic.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Transforms/FunctionAttrs/atomic.ll b/test/Transforms/FunctionAttrs/atomic.ll
index 62f8fa5a1d..7c2bff7a05 100644
--- a/test/Transforms/FunctionAttrs/atomic.ll
+++ b/test/Transforms/FunctionAttrs/atomic.ll
@@ -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 %x) uwtable ssp {
+; CHECK: define i32 @test2(i32* nocapture %x) uwtable ssp {
entry:
%r = load atomic i32* %x seq_cst, align 4
ret i32 %r