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.
|
; RUN: opt < %s -instcombine -S | grep "sdiv i8 \%a, 9"
|
|
; PR2048
|
|
|
|
define i8 @i(i8 %a) {
|
|
%tmp1 = sdiv i8 %a, -3
|
|
%tmp2 = sdiv i8 %tmp1, -3
|
|
ret i8 %tmp2
|
|
}
|
|
|