From: Michael Gottesman Date: Mon, 24 Jun 2013 21:25:39 +0000 (+0000) Subject: [NeonIntrinsicTestEmitter] vld1/vst1 do not require the :64 hint. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fdeee9da9e497ef0bbebbf375c32360e9a21376b;p=clang [NeonIntrinsicTestEmitter] vld1/vst1 do not require the :64 hint. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@184786 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/TableGen/NeonEmitter.cpp b/utils/TableGen/NeonEmitter.cpp index c5fc7821a2..bb505de95d 100644 --- a/utils/TableGen/NeonEmitter.cpp +++ b/utils/TableGen/NeonEmitter.cpp @@ -771,8 +771,6 @@ GenerateRegisterCheckPatternForLoadStores(const StringRef &NameRef, if (IsLDSTOne) { if ((HasLanePostfix || HasDupPostfix) && OutTypeCode != "8") { RegisterSuffix += ":" + OutTypeCode; - } else if (OutTypeCode == "64") { - RegisterSuffix += ":64"; } }