summaryrefslogtreecommitdiffstats
path: root/clang/test/Modules/Inputs
diff options
context:
space:
mode:
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>2013-04-03 17:39:30 +0000
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>2013-04-03 17:39:30 +0000
commit0c2f30b9d3cd040f943ba444954d0f626ac3f16d (patch)
tree1b8b761ac1ec67289024315f43fd81a9667ca35f /clang/test/Modules/Inputs
parent04e213b6b6fb14b8b20b83bf7fd4a4cddbbcb91c (diff)
downloadbcm5719-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')
-rw-r--r--clang/test/Modules/Inputs/macros_left.h2
-rw-r--r--clang/test/Modules/Inputs/macros_right.h2
2 files changed, 4 insertions, 0 deletions
diff --git a/clang/test/Modules/Inputs/macros_left.h b/clang/test/Modules/Inputs/macros_left.h
index a8aac75a2fd..076b0464e6c 100644
--- a/clang/test/Modules/Inputs/macros_left.h
+++ b/clang/test/Modules/Inputs/macros_left.h
@@ -12,3 +12,5 @@
#define LEFT_RIGHT_DIFFERENT3 float
#define LEFT_RIGHT_DIFFERENT float
+
+#define FN_ADD(a,b) (a+b)
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)
OpenPOWER on IntegriCloud