1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

new testcase for PR1304

llvm-svn: 35791
This commit is contained in:
Chris Lattner 2007-04-09 01:37:35 +00:00
parent 4ea619ae00
commit 34065e8986

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
}