You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
367 B
14 lines
367 B
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
|
|
; RUN: opt < %s -instcombine -S | FileCheck %s
|
|
|
|
define i64 @rem_unsigned(i64 %x1, i64 %y2) {
|
|
; CHECK-LABEL: @rem_unsigned(
|
|
; CHECK-NEXT: [[R:%.*]] = urem i64 %x1, %y2
|
|
; CHECK-NEXT: ret i64 [[R]]
|
|
;
|
|
%r = udiv i64 %x1, %y2
|
|
%r7 = mul i64 %r, %y2
|
|
%r8 = sub i64 %x1, %r7
|
|
ret i64 %r8
|
|
}
|