From 311a698548c87919f6885493266b4803712dcee7 Mon Sep 17 00:00:00 2001 From: Jonas Paulsson Date: Fri, 7 Apr 2017 12:11:41 +0000 Subject: [PATCH] [SystemZ] Remove confusing comment in combineEXTRACT_VECTOR_ELT() It isn't just one-element vectors that can appear here. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@299762 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/SystemZ/SystemZISelLowering.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/Target/SystemZ/SystemZISelLowering.cpp b/lib/Target/SystemZ/SystemZISelLowering.cpp index 2db35eabe63..7f0cb11dc35 100644 --- a/lib/Target/SystemZ/SystemZISelLowering.cpp +++ b/lib/Target/SystemZ/SystemZISelLowering.cpp @@ -5001,8 +5001,6 @@ SDValue SystemZTargetLowering::combineSTORE( SDValue SystemZTargetLowering::combineEXTRACT_VECTOR_ELT( SDNode *N, DAGCombinerInfo &DCI) const { - // <1 x ..> vectors may be present in the function even without vector - // support, which will be handled during legalization. if (!Subtarget.hasVector()) return SDValue(); -- 2.50.1