From fdeee9da9e497ef0bbebbf375c32360e9a21376b Mon Sep 17 00:00:00 2001 From: Michael Gottesman <mgottesman@apple.com> Date: Mon, 24 Jun 2013 21:25:39 +0000 Subject: [PATCH] [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 --- utils/TableGen/NeonEmitter.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/utils/TableGen/NeonEmitter.cpp b/utils/TableGen/NeonEmitter.cpp index c5fc7821a29..bb505de95da 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"; } } -- GitLab