Add testcase for recent legalizer change

llvm-svn: 47049
This commit is contained in:
Nate Begeman 2008-02-13 06:48:40 +00:00
parent f628b4b2a7
commit cfd9883301

View File

@ -0,0 +1,8 @@
; RUN: llvm-as < %s | llc -march=ppc32 -mcpu=g5 | grep sth
define <8 x i16> @insert(<8 x i16> %foo, i16 %a) nounwind {
entry:
%vecext = insertelement <8 x i16> %foo, i16 %a, i32 7 ; <i8> [#uses=1]
ret <8 x i16> %vecext
}