aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/copy-paired-reg.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/ARM/copy-paired-reg.ll')
-rw-r--r--test/CodeGen/ARM/copy-paired-reg.ll17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/CodeGen/ARM/copy-paired-reg.ll b/test/CodeGen/ARM/copy-paired-reg.ll
deleted file mode 100644
index 453fac4b1504..000000000000
--- a/test/CodeGen/ARM/copy-paired-reg.ll
+++ /dev/null
@@ -1,17 +0,0 @@
-; RUN: llc < %s -mtriple=armv7-apple-ios -verify-machineinstrs
-; RUN: llc < %s -mtriple=armv7-linux-gnueabi -verify-machineinstrs
-
-define void @f() {
- %a = alloca i8, i32 8, align 8
- %b = alloca i8, i32 8, align 8
-
- %c = bitcast i8* %a to i64*
- %d = bitcast i8* %b to i64*
-
- store atomic i64 0, i64* %c seq_cst, align 8
- store atomic i64 0, i64* %d seq_cst, align 8
-
- %e = load atomic i64, i64* %d seq_cst, align 8
-
- ret void
-}