hanchenye-llvm-project/llvm/test/Transforms/InstCombine/2008-11-27-IDivVector.ll

12 lines
233 B
LLVM

; RUN: opt < %s -instcombine -S | not grep div
define <2 x i8> @f(<2 x i8> %x) {
%A = udiv <2 x i8> %x, <i8 1, i8 1>
ret <2 x i8> %A
}
define <2 x i8> @g(<2 x i8> %x) {
%A = sdiv <2 x i8> %x, <i8 1, i8 1>
ret <2 x i8> %A
}