summaryrefslogtreecommitdiffstats
path: root/clang/utils
diff options
context:
space:
mode:
authorMichael Gottesman <mgottesman@apple.com>2013-06-24 21:25:37 +0000
committerMichael Gottesman <mgottesman@apple.com>2013-06-24 21:25:37 +0000
commitc6b5e56c19effc9f9aac8c922b94ba1b34069641 (patch)
treeff2ae2775f61afa0919feab1c0a609e22a9e7279 /clang/utils
parentd95c49a91c1cb17301231fa89a229ab89180807a (diff)
downloadbcm5719-llvm-c6b5e56c19effc9f9aac8c922b94ba1b34069641.tar.gz
bcm5719-llvm-c6b5e56c19effc9f9aac8c922b94ba1b34069641.zip
[NeonIntrinsicTestEmitter] Fix incorrect FileCheck pattern where we were expecting a ',' prefix to alignment hints.
llvm-svn: 184785
Diffstat (limited to 'clang/utils')
-rw-r--r--clang/utils/TableGen/NeonEmitter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/utils/TableGen/NeonEmitter.cpp b/clang/utils/TableGen/NeonEmitter.cpp
index 23f4ee1e56d..c5fc7821a29 100644
--- a/clang/utils/TableGen/NeonEmitter.cpp
+++ b/clang/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";
}
}
OpenPOWER on IntegriCloud