new testcase for extractelement instruction

llvm-svn: 25186
This commit is contained in:
Chris Lattner 2006-01-10 20:00:20 +00:00
parent 6a671ed26f
commit 8f96cc65bb

View File

@ -0,0 +1,8 @@
; RUN: llvm-as %s -o - | llvm-dis > %t1.ll
; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
; RUN: diff %t1.ll %t2.ll
uint %test_extractelement(<4 x uint> %V) {
%R = extractelement <4 x uint> %V, uint 1
ret uint %R
}