new testcase for PR1304

llvm-svn: 35791
This commit is contained in:
Chris Lattner 2007-04-09 01:37:35 +00:00
parent 389decb3a4
commit e04c652f5d
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
; RUN: llvm-as < %s | opt -instcombine -disable-output
; PR1304
define i64 @bork(<1 x i64> %vec) {
%tmp = extractelement <1 x i64> %vec, i32 0
ret i64 %tmp
}