diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-10-20 22:00:55 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-10-20 22:00:55 +0000 |
commit | 796d76a663795d66ed5aa97a1f585514dd68b043 (patch) | |
tree | 98f71284a72e7f7714726b6ac5058e61dc56d97d /clang/test/Index/annotate-tokens-pp.c | |
parent | 2edaa2fb24eb17fbb6b3752ddb7d06a8d6b0799e (diff) | |
download | bcm5719-llvm-796d76a663795d66ed5aa97a1f585514dd68b043.tar.gz bcm5719-llvm-796d76a663795d66ed5aa97a1f585514dd68b043.zip |
Extend the preprocessing record and libclang with support for
inclusion directives, keeping track of every #include, #import,
etc. in the translation unit. We keep track of the source location and
kind of the inclusion, how the file name was spelled, and the
underlying file to which the inclusion resolved.
llvm-svn: 116952
Diffstat (limited to 'clang/test/Index/annotate-tokens-pp.c')
-rw-r--r-- | clang/test/Index/annotate-tokens-pp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Index/annotate-tokens-pp.c b/clang/test/Index/annotate-tokens-pp.c index 55ee7630eb3..631caab839c 100644 --- a/clang/test/Index/annotate-tokens-pp.c +++ b/clang/test/Index/annotate-tokens-pp.c @@ -68,7 +68,7 @@ void test() { // CHECK: Identifier: "BAR" [6:5 - 6:8] macro instantiation=BAR:3:9 // CHECK: Identifier: "STILL_NOTHING" [6:9 - 6:22] macro instantiation=STILL_NOTHING:2:9 // CHECK: Punctuation: ";" [6:22 - 6:23] -// CHECK: Punctuation: "#" [7:1 - 7:2] preprocessing directive= +// CHECK: Punctuation: "#" [7:1 - 7:2] inclusion directive=foo.h // CHECK: Identifier: "include" [7:2 - 7:9] preprocessing directive= // CHECK: Literal: ""foo.h"" [7:10 - 7:17] preprocessing directive= // CHECK: Punctuation: "#" [8:1 - 8:2] preprocessing directive= |