]> granicus.if.org Git - clang/commitdiff
[modules] If a submodule has re-definitions of the same macro, only the last definiti...
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>
Wed, 3 Apr 2013 05:11:33 +0000 (05:11 +0000)
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>
Wed, 3 Apr 2013 05:11:33 +0000 (05:11 +0000)
Fixes rdar://13562262

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@178622 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Serialization/ASTWriter.cpp
test/Modules/Inputs/macros_top.h

index 033d48c1471b289723c0ad4ce7a47f5e79c2ee8b..6893b5003ffb24e0b425a81b233a6741abada4fa 100644 (file)
@@ -2937,6 +2937,7 @@ class ASTIdentifierTableTrait {
     if (!MD)
       return 0;
 
+    SubmoduleID OrigModID = ModID;
     bool isUndefined = false;
     Optional<bool> isPublic;
     for (; MD; MD = MD->getPrevious()) {
@@ -2954,6 +2955,11 @@ class ASTIdentifierTableTrait {
         isUndefined = false;
         isPublic = Optional<bool>();
       }
+      // We are looking for a definition in a different submodule than the one
+      // that we started with. If a submodule has re-definitions of the same
+      // macro, only the last definition will be used as the "exported" one.
+      if (ModID == OrigModID)
+        continue;
 
       if (DefMacroDirective *DefMD = dyn_cast<DefMacroDirective>(MD)) {
         if (!isUndefined && (!isPublic.hasValue() || isPublic.getValue()))
index 9c3f3c071fd0262364464f18f0e9e3771c3cfce5..dd303ffee4e1511fa914c98b73db57c54784205a 100644 (file)
@@ -8,8 +8,8 @@
 
 
 
-
-
+#define TOP_RIGHT_REDEF float
+// The last definition will be exported from the sub-module.
 #define TOP_RIGHT_REDEF int
 
 #define TOP_RIGHT_UNDEF int