aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/InstCombine/2008-05-22-NegValVector.ll
blob: f2511b383254993e625cf40ffcb960755ce2e855 (plain)
1
2
3
4
5
6
7
8
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep sub

define <3 x i8> @f(<3 x i8> %a) {
  %A = sub <3 x i8> zeroinitializer, %a
  %B = mul <3 x i8> %A, <i8 5, i8 5, i8 5>
  ret <3 x i8> %B
}