Skip to content
  1. Mar 12, 2013
    • Rafael Espindola's avatar
      We already reported an error for · cfd2528a
      Rafael Espindola authored
      extern "C" {
        void test5_f() {
          extern int test5_b;
        }
      }
      static float test5_b;
      
      This patch makes us report one for
      
      extern "C" {
        void test6_f() {
          extern int test6_b;
        }
      }
      extern "C" {
        static float test6_b;
      }
      
      Not because we think the declaration would be extern C, but because of the rule:
      
      An entity with C language linkage shall not be declared with the same name as an entity in global scope...
      
      We were just not looking past the extern "C" to see if the decl was in global
      scope.
      
      llvm-svn: 176875
      cfd2528a
    • Rafael Espindola's avatar
      Error if an extern C declaration matches a previous hidden extern C declaration. · 15770b2f
      Rafael Espindola authored
      Without this patch we produce an error for
      
      extern "C" {
        void f() {
          extern int b;
        }
      }
      extern "C" {
        extern float b;
      }
      
      but not for
      
      extern "C" {
        void f() {
          extern int b;
        }
      }
      extern "C" {
        float b;
      }
      
      llvm-svn: 176867
      15770b2f
  2. Jan 11, 2013
  3. Jun 08, 2012
  4. Apr 03, 2012
  5. Oct 11, 2011
  6. Oct 10, 2011
  7. Sep 14, 2011
  8. Aug 23, 2011
    • Matt Beaumont-Gay's avatar
      Fix an incorrect note. · 56381b85
      Matt Beaumont-Gay authored
      For the test case added to function-redecl.cpp, we were previously complaining
      about a mismatch in the parameter types, since the definition used the
      typedef'd type.
      
      llvm-svn: 138318
      56381b85
  9. Aug 18, 2011
  10. Dec 15, 2009
  11. Mar 24, 2009
  12. Feb 24, 2009
    • Douglas Gregor's avatar
      Improve merging of function declarations. Specifically: · e62c0a45
      Douglas Gregor authored
        - When we are declaring a function in local scope, we can merge with
          a visible declaration from an outer scope if that declaration
          refers to an entity with linkage. This behavior now works in C++
          and properly ignores entities without linkage.
        - Diagnose the use of "static" on a function declaration in local
          scope.
        - Diagnose the declaration of a static function after a non-static
          declaration of the same function.
        - Propagate the storage specifier to a function declaration from a
          prior declaration (PR3425)
        - Don't name-mangle "main"
      
      llvm-svn: 65360
      e62c0a45
Loading