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";
       }
     }
 


_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to