diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-02-10 20:42:40 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-02-10 20:42:40 +0000 |
commit | b1ffee6e574d57b79ce2defd1b57052649221c03 (patch) | |
tree | b4c53852abaae2b96e5dd5a74f8fceff496a9506 /tools/c-index-test/c-index-test.c | |
parent | e61a1d4c57bbce3dfaa191a4b4de48ad79ac0b83 (diff) |
c-index-test: Add "none" filter, useful for performance testing.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@95800 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/c-index-test/c-index-test.c')
-rw-r--r-- | tools/c-index-test/c-index-test.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/c-index-test/c-index-test.c b/tools/c-index-test/c-index-test.c index 423fa9343a..26df528ca6 100644 --- a/tools/c-index-test/c-index-test.c +++ b/tools/c-index-test/c-index-test.c @@ -464,6 +464,7 @@ static int perform_test_load(CXIndex Idx, CXTranslationUnit TU, /* Perform some simple filtering. */ if (!strcmp(filter, "all") || !strcmp(filter, "local")) ck = NULL; + else if (!strcmp(filter, "none")) K = (enum CXCursorKind) ~0; else if (!strcmp(filter, "category")) K = CXCursor_ObjCCategoryDecl; else if (!strcmp(filter, "interface")) K = CXCursor_ObjCInterfaceDecl; else if (!strcmp(filter, "protocol")) K = CXCursor_ObjCProtocolDecl; |