aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/ARM/div.ll
blob: 3f8a752b39fe4a2d0bb06ccb82f1f43d23ac42f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm > %t
; RUN: grep __divsi3  %t
; RUN: grep __udivsi3 %t
; RUN: grep __modsi3  %t
; RUN: grep __umodsi3 %t

int %f1(int %a, int %b) {
entry:
	%tmp1 = div int %a, %b
	ret int %tmp1
}

uint %f2(uint %a, uint %b) {
entry:
	%tmp1 = div uint %a, %b
	ret uint %tmp1
}

int %f3(int %a, int %b) {
entry:
	%tmp1 = rem int %a, %b
	ret int %tmp1
}

uint %f4(uint %a, uint %b) {
entry:
	%tmp1 = rem uint %a, %b
	ret uint %tmp1
}