r184785 - [NeonIntrinsicTestEmitter] Fix incorrect FileCheck pattern where we were expecting a ', ' prefix to alignment hints.
Michael Gottesman
mgottesman at apple.com
Mon Jun 24 14:25:37 PDT 2013
Author: mgottesman
Date: Mon Jun 24 16:25:37 2013
New Revision: 184785
URL: http://llvm.org/viewvc/llvm-project?rev=184785&view=rev
Log:
[NeonIntrinsicTestEmitter] Fix incorrect FileCheck pattern where we were expecting a ',' prefix to alignment hints.
Modified:
cfe/trunk/utils/TableGen/NeonEmitter.cpp
Modified: cfe/trunk/utils/TableGen/NeonEmitter.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/utils/TableGen/NeonEmitter.cpp?rev=184785&r1=184784&r2=184785&view=diff
==============================================================================
--- cfe/trunk/utils/TableGen/NeonEmitter.cpp (original)
+++ cfe/trunk/utils/TableGen/NeonEmitter.cpp Mon Jun 24 16:25:37 2013
@@ -770,9 +770,9 @@ GenerateRegisterCheckPatternForLoadStore
// a dup/lane instruction.
if (IsLDSTOne) {
if ((HasLanePostfix || HasDupPostfix) && OutTypeCode != "8") {
- RegisterSuffix += ", :" + OutTypeCode;
+ RegisterSuffix += ":" + OutTypeCode;
} else if (OutTypeCode == "64") {
- RegisterSuffix += ", :64";
+ RegisterSuffix += ":64";
}
}
More information about the cfe-commits
mailing list