[InstCombine] Signed saturation patterns
[llvm-core.git] / test / CodeGen / ARM / Windows / no-aeabi.ll
bloba5f7fc8daf6e3b85ddb73a09ca95b059158c2300
1 ; RUN: llc -mtriple=thumbv7-windows-itanium -mcpu=cortex-a9 -verify-machineinstrs -o - %s | FileCheck %s
3 declare void @llvm.memmove.p0i8.p0i8.i32(i8* nocapture, i8* nocapture, i32, i1) nounwind
4 declare void @llvm.memcpy.p0i8.p0i8.i32(i8* nocapture, i8* 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.p0i8.p0i8.i32(i8* bitcast ([512 x i8]* @target to i8*), i8* bitcast ([512 x i8]* @source to i8*), i32 512, i1 false)
12   unreachable
15 ; CHECK-NOT: __aeabi_memmove
17 define void @copy() nounwind {
18 entry:
19   call void @llvm.memcpy.p0i8.p0i8.i32(i8* bitcast ([512 x i8]* @target to i8*), i8* bitcast ([512 x i8]* @source to i8*), 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