diff options
| author | Eli Friedman <eli.friedman@gmail.com> | 2011-08-12 23:33:52 +0000 |
|---|---|---|
| committer | Eli Friedman <eli.friedman@gmail.com> | 2011-08-12 23:33:52 +0000 |
| commit | 729ed799c7923a7d23ab71575546b42811a7741d (patch) | |
| tree | 8e4acaff89bdd3bb9f29e9fdefc6131ae8a6276e /clang/test/CodeGen/atomic.c | |
| parent | 23aca09205a3934ee0df05f0c09a9fe9b260604d (diff) | |
| download | bcm5719-llvm-729ed799c7923a7d23ab71575546b42811a7741d.tar.gz bcm5719-llvm-729ed799c7923a7d23ab71575546b42811a7741d.zip | |
Update clang tests for r137527.
llvm-svn: 137535
Diffstat (limited to 'clang/test/CodeGen/atomic.c')
| -rw-r--r-- | clang/test/CodeGen/atomic.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGen/atomic.c b/clang/test/CodeGen/atomic.c index 8ce2d96043f..97e12ebe8cb 100644 --- a/clang/test/CodeGen/atomic.c +++ b/clang/test/CodeGen/atomic.c @@ -118,7 +118,7 @@ int atomic(void) { // CHECK: call void @llvm.memory.barrier(i1 true, i1 true, i1 true, i1 true, i1 true) __sync_lock_release(&val); - // CHECK: volatile store i32 0, i32* + // CHECK: store volatile i32 0, i32* __sync_synchronize (); // CHECK: call void @llvm.memory.barrier(i1 true, i1 true, i1 true, i1 true, i1 false) @@ -130,7 +130,7 @@ int atomic(void) { void release_return(int *lock) { // Ensure this is actually returning void all the way through. return __sync_lock_release(lock); - // CHECK: volatile store i32 0, i32* + // CHECK: store volatile i32 0, i32* } |

