diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-10-11 19:00:44 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-10-11 19:00:44 +0000 |
commit | 8003fd613724847bba834ae41aca6f446af1f818 (patch) | |
tree | 1aed373ce9afbf882666f06410ee0fc4ba872ec2 /tools | |
parent | 90da80c869eebc5a73bf031af5bedb6f281214fb (diff) |
[libclang] Add tests for indexing modules and PCHs using modules.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@165732 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r-- | tools/c-index-test/c-index-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/c-index-test/c-index-test.c b/tools/c-index-test/c-index-test.c index 9424d43db1..97d57515a0 100644 --- a/tools/c-index-test/c-index-test.c +++ b/tools/c-index-test/c-index-test.c @@ -2137,7 +2137,7 @@ static void printCXIndexLoc(CXIdxLoc loc, CXClientData client_data) { index_data = (IndexData *)client_data; clang_indexLoc_getFileLocation(loc, &file, 0, &line, &column, 0); if (line == 0) { - printf("<null loc>"); + printf("<invalid>"); return; } if (!file) { |