diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2011-08-16 01:42:56 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2011-08-16 01:42:56 +0000 |
commit | 34fd67c7bc5ec3c616fcb561315faca63408d1ba (patch) | |
tree | f3041aff80b32c625db45f81a942a58147a51f5c /test | |
parent | 2199dfb0e6b98fdce0a3c863eb84d466d426b968 (diff) | |
download | external_llvm-34fd67c7bc5ec3c616fcb561315faca63408d1ba.zip external_llvm-34fd67c7bc5ec3c616fcb561315faca63408d1ba.tar.gz external_llvm-34fd67c7bc5ec3c616fcb561315faca63408d1ba.tar.bz2 |
Fix test.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@137703 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/Transforms/FunctionAttrs/atomic.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Transforms/FunctionAttrs/atomic.ll b/test/Transforms/FunctionAttrs/atomic.ll index 62f8fa5..7c2bff7 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 |