Skip to content
  1. Jul 23, 2009
    • Fariborz Jahanian's avatar
      Add constructor used to initialize base/member in · 0228bc1a
      Fariborz Jahanian authored
      CXXBaseOrMemberInitializer AST node. Needed by
      its clients to do the initialization.
      
      llvm-svn: 76826
      0228bc1a
    • Mike Stump's avatar
      Add warning for falling off the end of a function that should return a · 33979f75
      Mike Stump authored
      value.  This is on by default, and controlled by -Wreturn-type (-Wmost
      -Wall).  I believe there should be very few false positives, though
      the most interesting case would be:
      
        int() { bar(); }
      
      when bar does:
      
        bar() { while (1) ; }
      
      Here, we assume functions return, unless they are marked with the
      noreturn attribute.  I can envision a fixit note for functions that
      never return normally that don't have a noreturn attribute to add a
      noreturn attribute.
      
      If anyone spots other false positives, let me know!
      
      llvm-svn: 76821
      33979f75
    • Douglas Gregor's avatar
      Implement support for out-of-line definitions of the class members of class · e93e46c6
      Douglas Gregor authored
      templates, e.g.,
      
        template<typename T>
        struct Outer {
          struct Inner;
        };
      
        template<typename T>
        struct Outer<T>::Inner {
          // ...
        };
      
      Implementing this feature required some extensions to ActOnTag, which
      now takes a set of template parameter lists, and is the precursor to
      removing the ActOnClassTemplate function from the parser Action
      interface. The reason for this approach is simple: the parser cannot
      tell the difference between a class template definition and the
      definition of a member of a class template; both have template
      parameter lists, and semantic analysis determines what that template
      parameter list means.
      
      There is still some cleanup to do with ActOnTag and
      ActOnClassTemplate. This commit provides the basic functionality we
      need, however.
      
      llvm-svn: 76820
      e93e46c6
    • Mike Stump's avatar
      Improve CFG support for C++ throw expressions. · 8dd1b6bd
      Mike Stump authored
      llvm-svn: 76814
      8dd1b6bd
    • Mike Stump's avatar
      Prep for new warning. · 24cbfc37
      Mike Stump authored
      llvm-svn: 76813
      24cbfc37
    • Eli Friedman's avatar
      Slight code reorganization to allow instantiating post-inc/dec. · 6aea5756
      Eli Friedman authored
      llvm-svn: 76807
      6aea5756
  2. Jul 22, 2009
  3. Jul 21, 2009
Loading