]> granicus.if.org Git - clang/commitdiff
fix rdar://6097892 - gcc incompat: clang rejects __func__, __FUNCTION__, and __PRETTY...
authorChris Lattner <sabre@nondot.org>
Fri, 12 Dec 2008 05:05:20 +0000 (05:05 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 12 Dec 2008 05:05:20 +0000 (05:05 +0000)
Yeah, this is "useful".

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

include/clang/Basic/DiagnosticKinds.def
lib/Sema/SemaExpr.cpp
test/Sema/predef.c

index 807d32853ddfac8527391975628f4505ee5cbba3..a70f70eb03431e5607405f6ffb671cd0b9ce33d1 100644 (file)
@@ -676,7 +676,7 @@ DIAG(warn_octal_escape_too_large, WARNING,
 DIAG(err_hex_escape_no_digits, ERROR,
      "\\x used with no following hex digits")
      
-DIAG(err_predef_outside_function, ERROR,
+DIAG(ext_predef_outside_function, WARNING,
      "predefined identifier is only valid inside function")
 
 // Declarations.
index ba5d28a6334b1e3a31d6e895f069394bb99b5aba..264b85b69cb2c82b67276a75811c3406d6f23b63 100644 (file)
@@ -597,17 +597,19 @@ Sema::ExprResult Sema::ActOnPredefinedExpr(SourceLocation Loc,
   case tok::kw___PRETTY_FUNCTION__: IT = PredefinedExpr::PrettyFunction; break;
   }
 
-  // Verify that this is in a function context.
-  if (getCurFunctionOrMethodDecl() == 0)
-    return Diag(Loc, diag::err_predef_outside_function);
-  
   // Pre-defined identifiers are of type char[x], where x is the length of the
   // string.
   unsigned Length;
   if (FunctionDecl *FD = getCurFunctionDecl())
     Length = FD->getIdentifier()->getLength();
-  else
-    Length = getCurMethodDecl()->getSynthesizedMethodSize();
+  else if (ObjCMethodDecl *MD = getCurMethodDecl())
+    Length = MD->getSynthesizedMethodSize();
+  else {
+    Diag(Loc, diag::ext_predef_outside_function);
+    // __PRETTY_FUNCTION__ -> "top level", the others produce an empty string.
+    Length = IT == PredefinedExpr::PrettyFunction ? strlen("top level") : 0;
+  }
+  
   
   llvm::APInt LengthI(32, Length + 1);
   QualType ResTy = Context.CharTy.getQualifiedType(QualType::Const);
index bd5e1a98b24bd9cd2b9fa8a716698cfa58e43b00..097950ccc63d87208609394437428331a44d390a 100644 (file)
@@ -5,8 +5,15 @@ void abcdefghi12(void) {
  static int arr[sizeof(__func__)==12 ? 1 : -1];
 }
 
-char *X = __func__; // expected-error {{predefined identifier is only valid}}
+char *X = __func__; // expected-warning {{predefined identifier is only valid}} \
+                       expected-warning {{initializing 'char const [1]' discards qualifiers, expected 'char *'}}
 
 void a() {
   __func__[0] = 'a';  // expected-error {{variable is not assignable}}
 }
+
+// rdar://6097892 - GCC permits this insanity.
+const char *b = __func__;  // expected-warning {{predefined identifier is only valid}}
+const char *c = __FUNCTION__; // expected-warning {{predefined identifier is only valid}}
+const char *d = __PRETTY_FUNCTION__; // expected-warning {{predefined identifier is only valid}}
+