forked from OSchip/llvm-project
[NeonIntrinsicTestEmitter] Fix incorrect FileCheck pattern where we were expecting a ',' prefix to alignment hints.
llvm-svn: 184785
This commit is contained in:
parent
d95c49a91c
commit
c6b5e56c19
|
@ -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";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue