diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2011-09-12 22:17:26 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2011-09-12 22:17:26 +0000 |
commit | c2954616fbd11f5a6117236f58420029b773a639 (patch) | |
tree | 7ed43057b8e0cb9254c19579c7f781c0f198cbb3 /test/Index/annotate-tokens.c | |
parent | 544055fa4663298bd2361e9cdfc684934d81e42f (diff) |
[libclang] For getDeclFromExpr in CIndex.cpp, associate the decl of
a DeclRefExpr, MemberExpr, etc. with a CastExpr if it is ImplicitCast,
since the implicit cast is the one that is invisible in source code.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@139547 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Index/annotate-tokens.c')
-rw-r--r-- | test/Index/annotate-tokens.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Index/annotate-tokens.c b/test/Index/annotate-tokens.c index 162a224ed6..0413c50a13 100644 --- a/test/Index/annotate-tokens.c +++ b/test/Index/annotate-tokens.c @@ -38,10 +38,10 @@ enum Color g(int i, ...) { // CHECK: Punctuation: "*" [4:4 - 4:5] VarDecl=t_ptr:4:6 (Definition) // CHECK: Identifier: "t_ptr" [4:6 - 4:11] VarDecl=t_ptr:4:6 (Definition) // CHECK: Punctuation: "=" [4:12 - 4:13] VarDecl=t_ptr:4:6 (Definition) -// CHECK: Punctuation: "(" [4:14 - 4:15] UnexposedExpr=ptr:3:14 +// CHECK: Punctuation: "(" [4:14 - 4:15] UnexposedExpr= // CHECK: Identifier: "T" [4:15 - 4:16] TypeRef=T:1:13 -// CHECK: Punctuation: "*" [4:17 - 4:18] UnexposedExpr=ptr:3:14 -// CHECK: Punctuation: ")" [4:18 - 4:19] UnexposedExpr=ptr:3:14 +// CHECK: Punctuation: "*" [4:17 - 4:18] UnexposedExpr= +// CHECK: Punctuation: ")" [4:18 - 4:19] UnexposedExpr= // CHECK: Identifier: "ptr" [4:19 - 4:22] DeclRefExpr=ptr:3:14 // CHECK: Punctuation: ";" [4:22 - 4:23] UnexposedStmt= // CHECK: Punctuation: "(" [5:3 - 5:4] UnexposedExpr= |