blob: f2511b383254993e625cf40ffcb960755ce2e855 [file] [log] [blame]
Nick Lewycky3bf55122008-05-23 04:54:45 +00001; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep sub
2
3define <3 x i8> @f(<3 x i8> %a) {
4 %A = sub <3 x i8> zeroinitializer, %a
5 %B = mul <3 x i8> %A, <i8 5, i8 5, i8 5>
6 ret <3 x i8> %B
7}
8