diff options
author | dim <dim@FreeBSD.org> | 2011-02-20 13:06:31 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2011-02-20 13:06:31 +0000 |
commit | 39fcc9a984e2820e4ea0fa2ac4abd17d9f3a31df (patch) | |
tree | a9243275843fbeaa590afc07ee888e006b8d54ea /test/Index/Inputs | |
parent | 69b4eca4a4255ba43baa5c1d9bbdec3ec17f479e (diff) | |
download | FreeBSD-src-39fcc9a984e2820e4ea0fa2ac4abd17d9f3a31df.zip FreeBSD-src-39fcc9a984e2820e4ea0fa2ac4abd17d9f3a31df.tar.gz |
Vendor import of clang trunk r126079:
http://llvm.org/svn/llvm-project/cfe/trunk@126079
Diffstat (limited to 'test/Index/Inputs')
-rw-r--r-- | test/Index/Inputs/a.h | 4 | ||||
-rw-r--r-- | test/Index/Inputs/b.h | 1 | ||||
-rw-r--r-- | test/Index/Inputs/get-cursor-includes-1.h | 6 | ||||
-rw-r--r-- | test/Index/Inputs/get-cursor-includes-2.h | 2 |
4 files changed, 13 insertions, 0 deletions
diff --git a/test/Index/Inputs/a.h b/test/Index/Inputs/a.h new file mode 100644 index 0000000..70ace8c --- /dev/null +++ b/test/Index/Inputs/a.h @@ -0,0 +1,4 @@ +#ifndef A_H +#define A_H +typedef int A; +#endif diff --git a/test/Index/Inputs/b.h b/test/Index/Inputs/b.h new file mode 100644 index 0000000..02591d2 --- /dev/null +++ b/test/Index/Inputs/b.h @@ -0,0 +1 @@ +typedef float B; diff --git a/test/Index/Inputs/get-cursor-includes-1.h b/test/Index/Inputs/get-cursor-includes-1.h new file mode 100644 index 0000000..48439d2 --- /dev/null +++ b/test/Index/Inputs/get-cursor-includes-1.h @@ -0,0 +1,6 @@ +#ifndef GET_CURSOR_INCLUDES_1_H +#define GET_CURSOR_INCLUDES_1_H + +extern int blah; + +#endif // GET_CURSOR_INCLUDES_1_H diff --git a/test/Index/Inputs/get-cursor-includes-2.h b/test/Index/Inputs/get-cursor-includes-2.h new file mode 100644 index 0000000..cf95c18 --- /dev/null +++ b/test/Index/Inputs/get-cursor-includes-2.h @@ -0,0 +1,2 @@ +#include "get-cursor-includes-1.h" +#include "get-cursor-includes-1.h" |