mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
a62270de2c
The reversion apparently deleted the test/Transforms directory. Will be re-reverting again. llvm-svn: 358552
10 lines
159 B
LLVM
10 lines
159 B
LLVM
; 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
|
|
}
|
|
|