diff options
Diffstat (limited to 'clang/test/Modules/Inputs')
-rw-r--r-- | clang/test/Modules/Inputs/diamond_left.h | 2 | ||||
-rw-r--r-- | clang/test/Modules/Inputs/diamond_top.h | 1 | ||||
-rw-r--r-- | clang/test/Modules/Inputs/preprocess-prefix.h | 2 |
3 files changed, 5 insertions, 0 deletions
diff --git a/clang/test/Modules/Inputs/diamond_left.h b/clang/test/Modules/Inputs/diamond_left.h index fce2e48882f..6494551e4bf 100644 --- a/clang/test/Modules/Inputs/diamond_left.h +++ b/clang/test/Modules/Inputs/diamond_left.h @@ -1,3 +1,5 @@ +int top_left_before(void *); + @import diamond_top; float left(float *); diff --git a/clang/test/Modules/Inputs/diamond_top.h b/clang/test/Modules/Inputs/diamond_top.h index 34998cd4324..30da14f6449 100644 --- a/clang/test/Modules/Inputs/diamond_top.h +++ b/clang/test/Modules/Inputs/diamond_top.h @@ -2,3 +2,4 @@ int top(int *); int top_left(char *c); +int top_left_before(void *); diff --git a/clang/test/Modules/Inputs/preprocess-prefix.h b/clang/test/Modules/Inputs/preprocess-prefix.h new file mode 100644 index 00000000000..04d01758320 --- /dev/null +++ b/clang/test/Modules/Inputs/preprocess-prefix.h @@ -0,0 +1,2 @@ +int left_and_right(int *); +#import "diamond_left.h" |