aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/Windows/memset.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/ARM/Windows/memset.ll')
-rw-r--r--test/CodeGen/ARM/Windows/memset.ll18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/CodeGen/ARM/Windows/memset.ll b/test/CodeGen/ARM/Windows/memset.ll
deleted file mode 100644
index 500e25e259c6..000000000000
--- a/test/CodeGen/ARM/Windows/memset.ll
+++ /dev/null
@@ -1,18 +0,0 @@
-; RUN: llc -mtriple thumbv7--windows-itanium -filetype asm -o - %s | FileCheck %s
-
-@source = common global [512 x i8] zeroinitializer, align 4
-
-declare void @llvm.memset.p0i8.i32(i8* nocapture, i8, i32, i32, i1) nounwind
-
-define void @function() {
-entry:
- call void @llvm.memset.p0i8.i32(i8* bitcast ([512 x i8]* @source to i8*), i8 0, i32 512, i32 0, i1 false)
- unreachable
-}
-
-; CHECK: movw r0, :lower16:source
-; CHECK: movt r0, :upper16:source
-; CHECK: movs r1, #0
-; CHECK: mov.w r2, #512
-; CHECK: memset
-