From: Davide Italiano Date: Thu, 27 Oct 2016 23:40:19 +0000 (+0000) Subject: Remove accidentally commited test. X-Git-Tag: llvmorg-4.0.0-rc1~6071 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e4146714cae760598ef5644638204df4a61c2322;p=platform%2Fupstream%2Fllvm.git Remove accidentally commited test. llvm-svn: 285366 --- diff --git a/llvm/test/Transforms/InstCombine/gep-vector.ll b/llvm/test/Transforms/InstCombine/gep-vector.ll deleted file mode 100644 index ce021bf..0000000 --- a/llvm/test/Transforms/InstCombine/gep-vector.ll +++ /dev/null @@ -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 -}