summaryrefslogtreecommitdiffstats
path: root/test/Transforms/InstCombine/urem.ll
blob: 24e7463cbaf845cbff11378c2f8a2100eefaf9dc (plain)
1
2
3
4
5
6
7
8
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep urem

define i64 @rem_unsigned(i64 %x1, i64 %y2) {
	%r = udiv i64 %x1, %y2
	%r7 = mul i64 %r, %y2
	%r8 = sub i64 %x1, %r7
	ret i64 %r8
}
OpenPOWER on IntegriCloud