64ac736ec5
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
12 lines
233 B
LLVM
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
|
|
}
|