From: Michael Gottesman Date: Mon, 24 Jun 2013 21:25:37 +0000 (+0000) Subject: [NeonIntrinsicTestEmitter] Fix incorrect FileCheck pattern where we were expecting... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=410c3f73cb0c78f72335dc712a9d887d77b8e7ce;p=clang [NeonIntrinsicTestEmitter] Fix incorrect FileCheck pattern where we were expecting a ',' prefix to alignment hints. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@184785 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/TableGen/NeonEmitter.cpp b/utils/TableGen/NeonEmitter.cpp index 23f4ee1e56..c5fc7821a2 100644 --- a/utils/TableGen/NeonEmitter.cpp +++ b/utils/TableGen/NeonEmitter.cpp @@ -770,9 +770,9 @@ GenerateRegisterCheckPatternForLoadStores(const StringRef &NameRef, // a dup/lane instruction. if (IsLDSTOne) { if ((HasLanePostfix || HasDupPostfix) && OutTypeCode != "8") { - RegisterSuffix += ", :" + OutTypeCode; + RegisterSuffix += ":" + OutTypeCode; } else if (OutTypeCode == "64") { - RegisterSuffix += ", :64"; + RegisterSuffix += ":64"; } }