Move a DenseMap's declaration outside of a loop, and just call
[oota-llvm.git] / test / Transforms / InstCombine / 2008-05-22-IDivVector.ll
1 ; RUN: llvm-as < %s | opt -instcombine -disable-output
2
3 define <3 x i8> @f(<3 x i8> %i) {
4   %A = sdiv <3 x i8> %i, %i
5   ret <3 x i8> %A
6 }