mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
9ea5599729
This isn't exactly ideal, but it is good enough for the moment. llvm-svn: 139245
24 lines
602 B
LLVM
24 lines
602 B
LLVM
; RUN: llc < %s -mtriple=x86_64-apple-macosx10.7.0 -verify-machineinstrs | FileCheck %s
|
|
; RUN: llc < %s -mtriple=x86_64-apple-macosx10.7.0 -O0 | FileCheck %s
|
|
|
|
define void @test1(i32* %ptr, i32 %val1) {
|
|
; CHECK: test1
|
|
; CHECK: xchgl %esi, (%rdi)
|
|
store atomic i32 %val1, i32* %ptr seq_cst, align 4
|
|
ret void
|
|
}
|
|
|
|
define void @test2(i32* %ptr, i32 %val1) {
|
|
; CHECK: test2
|
|
; CHECK: movl %esi, (%rdi)
|
|
store atomic i32 %val1, i32* %ptr release, align 4
|
|
ret void
|
|
}
|
|
|
|
define i32 @test3(i32* %ptr) {
|
|
; CHECK: test3
|
|
; CHECK: movl (%rdi), %eax
|
|
%val = load atomic i32* %ptr seq_cst, align 4
|
|
ret i32 %val
|
|
}
|