diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2013-04-03 17:39:30 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2013-04-03 17:39:30 +0000 |
commit | 0c2f30b9d3cd040f943ba444954d0f626ac3f16d (patch) | |
tree | 1b8b761ac1ec67289024315f43fd81a9667ca35f /clang/test/Modules/Inputs/macros_right.h | |
parent | 04e213b6b6fb14b8b20b83bf7fd4a4cddbbcb91c (diff) | |
download | bcm5719-llvm-0c2f30b9d3cd040f943ba444954d0f626ac3f16d.tar.gz bcm5719-llvm-0c2f30b9d3cd040f943ba444954d0f626ac3f16d.zip |
[preprocessor] Allow comparing two macro definitions syntactically instead of only lexically.
Syntactically means the function macro parameter names do not need to use the same
identifiers in order for the definitions to be considered identical.
Syntactic equivalence is a microsoft extension for macro redefinitions and we'll also
use this kind of comparison to check for ambiguous macros coming from modules.
rdar://13562254
llvm-svn: 178671
Diffstat (limited to 'clang/test/Modules/Inputs/macros_right.h')
-rw-r--r-- | clang/test/Modules/Inputs/macros_right.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/test/Modules/Inputs/macros_right.h b/clang/test/Modules/Inputs/macros_right.h index 445f579cf6d..dbbd2c36435 100644 --- a/clang/test/Modules/Inputs/macros_right.h +++ b/clang/test/Modules/Inputs/macros_right.h @@ -15,3 +15,5 @@ #undef TOP_RIGHT_REDEF #define TOP_RIGHT_REDEF float + +#define FN_ADD(x, y) (x+y) |