[NeonIntrinsicTestEmitter] Fix incorrect FileCheck pattern where we were expecting a ',' prefix to alignment hints.

llvm-svn: 184785
This commit is contained in:
Michael Gottesman 2013-06-24 21:25:37 +00:00
parent d95c49a91c
commit c6b5e56c19
1 changed files with 2 additions and 2 deletions

View File

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