forked from llvm-mirror/llvm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make atomic load and store of pointers work. Tighten verification of …
…atomic operations so other unexpected operations don't slip through. Based on patch by Logan Chien. PR11786/PR13186. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@162146 91177308-0d34-0410-b5e6-96231b3b80d8
- Loading branch information
1 parent
1cec7a0
commit fd45fa1
Showing
3 changed files
with
56 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
; RUN: llc < %s -mtriple=i686-none-linux | FileCheck %s | ||
|
||
define i32* @test_atomic_ptr_load(i32** %a0) { | ||
; CHECK: test_atomic_ptr_load | ||
; CHECK: movl | ||
; CHECK: movl | ||
; CHECK: ret | ||
0: | ||
%0 = load atomic i32** %a0 seq_cst, align 4 | ||
ret i32* %0 | ||
} | ||
|
||
define void @test_atomic_ptr_store(i32* %a0, i32** %a1) { | ||
; CHECK: test_atomic_ptr_store | ||
; CHECK: movl | ||
; CHECK: movl | ||
; CHECK: xchgl | ||
; CHECK: ret | ||
0: | ||
store atomic i32* %a0, i32** %a1 seq_cst, align 4 | ||
ret void | ||
} |