aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/atomic-load-store.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/X86/atomic-load-store.ll')
-rw-r--r--test/CodeGen/X86/atomic-load-store.ll23
1 files changed, 0 insertions, 23 deletions
diff --git a/test/CodeGen/X86/atomic-load-store.ll b/test/CodeGen/X86/atomic-load-store.ll
deleted file mode 100644
index dab79bd274cf..000000000000
--- a/test/CodeGen/X86/atomic-load-store.ll
+++ /dev/null
@@ -1,23 +0,0 @@
-; RUN: llc < %s -mtriple=x86_64-apple-macosx10.7.0 -verify-machineinstrs | FileCheck %s
-; RUN: llc < %s -mtriple=x86_64-apple-macosx10.7.0 -verify-machineinstrs -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, i32* %ptr seq_cst, align 4
- ret i32 %val
-}