[test] Pre-commit llvm.experimental.memset.pattern tests prior to MemoryLocation...
[llvm-project.git] / llvm / test / CodeGen / ARM / Windows / no-aeabi.ll
blob22b57876ab68490e98d0a90334a72865b18d8b8c
1 ; RUN: llc -mtriple=thumbv7-windows-itanium -mcpu=cortex-a9 -verify-machineinstrs -o - %s | FileCheck %s
3 declare void @llvm.memmove.p0.p0.i32(ptr nocapture, ptr nocapture, i32, i1) nounwind
4 declare void @llvm.memcpy.p0.p0.i32(ptr nocapture, ptr nocapture, i32, i1) nounwind
6 @source = common global [512 x i8] zeroinitializer, align 4
7 @target = common global [512 x i8] zeroinitializer, align 4
9 define void @move() nounwind {
10 entry:
11   call void @llvm.memmove.p0.p0.i32(ptr @target, ptr @source, i32 512, i1 false)
12   unreachable
15 ; CHECK-NOT: __aeabi_memmove
17 define void @copy() nounwind {
18 entry:
19   call void @llvm.memcpy.p0.p0.i32(ptr @target, ptr @source, i32 512, i1 false)
20   unreachable
23 ; CHECK-NOT: __aeabi_memcpy
25 define i32 @divide(i32 %i, i32 %j) nounwind {
26 entry:
27   %quotient = sdiv i32 %i, %j
28   ret i32 %quotient
31 ; CHECK-NOT: __aeabi_idiv