Remove accidentally commited test.

llvm-svn: 285366
This commit is contained in:
Davide Italiano 2016-10-27 23:40:19 +00:00
parent e865a525df
commit e4146714ca
1 changed files with 0 additions and 15 deletions

View File

@ -1,15 +0,0 @@
; RUN: opt -instcombine %s -S | FileCheck %s
; CHECK-LABEL: patatino
; CHECK-NEXT: ret <8 x i64*> undef
define <8 x i64*> @patatino() {
%el = getelementptr i64, <8 x i64*> undef, <8 x i64> undef
ret <8 x i64*> %el
}
; CHECK-LABEL: patatino2
; CHECK-NEXT: ret <8 x i64*> undef
define <8 x i64*> @patatino2() {
%el = getelementptr inbounds i64, i64* undef, <8 x i64> undef
ret <8 x i64*> %el
}