]> granicus.if.org Git - clang/commitdiff
Reinstate r173952, this time limiting it to exactly the form
authorDouglas Gregor <dgregor@apple.com>
Wed, 30 Jan 2013 23:10:17 +0000 (23:10 +0000)
committerDouglas Gregor <dgregor@apple.com>
Wed, 30 Jan 2013 23:10:17 +0000 (23:10 +0000)
  #define X X

for which there is no point warning, ever.

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

lib/Lex/PPMacroExpansion.cpp
test/Headers/stdbool.cpp
test/Preprocessor/warn-disabled-macro-expansion.c

index 63791448858e373277c8f9e71aff0ae75f439e43..bda31ed294a06801532c797639ab043dd2a19c17 100644 (file)
@@ -459,7 +459,10 @@ bool Preprocessor::HandleMacroExpandedIdentifier(Token &Identifier,
       if (MacroInfo *NewMI = getMacroInfo(NewII))
         if (!NewMI->isEnabled() || NewMI == MI) {
           Identifier.setFlag(Token::DisableExpand);
-          Diag(Identifier, diag::pp_disabled_macro_expansion);
+          // Don't warn for "#define X X" like "#define bool bool" from
+          // stdbool.h.
+          if (NewMI != MI || MI->isFunctionLike())
+            Diag(Identifier, diag::pp_disabled_macro_expansion);
         }
     }
 
index a252cca1a6a753a19e2b7253f7007353759f402d..7c927db441b2bc5c097758ade6a3517604ce438a 100644 (file)
@@ -1,5 +1,6 @@
 // RUN: %clang_cc1 -E -dM %s | FileCheck --check-prefix=CHECK-GNU-COMPAT %s
 // RUN: %clang_cc1 -std=c++98 -E -dM %s | FileCheck --check-prefix=CHECK-CONFORMING %s
+// RUN: %clang_cc1 -fsyntax-only -std=gnu++98 -verify -Weverything %s
 #include <stdbool.h>
 #define zzz
 
@@ -12,3 +13,7 @@
 // CHECK-CONFORMING: #define __CHAR_BIT__
 // CHECK-CONFORMING-NOT: #define false false
 // CHECK-CONFORMING: #define zzz
+
+zzz
+// expected-no-diagnostics
+extern bool x;
index b01b63f6b3f7823f498a6a08cc3fe38dfad79fb3..21a3b7e4f1421fdecf299610642098f979e6c1cb 100644 (file)
 
 #define c(x) x(0)
 
+#define y(x) y
 #define z(x) (z)(x)
 
-p // expected-warning {{recursive macro}}
+p // no warning
 
 a // expected-warning {{recursive macro}}
 
@@ -28,4 +29,7 @@ h(0) // expected-warning {{recursive macro}}
 
 c(c) // expected-warning {{recursive macro}}
 
+y(5) // expected-warning {{recursive macro}}
+
 z(z) // ok
+