Skip to content
  1. Nov 30, 2013
  2. Nov 27, 2013
  3. Nov 24, 2013
  4. Nov 21, 2013
  5. Nov 19, 2013
  6. Nov 16, 2013
  7. Nov 15, 2013
  8. Nov 13, 2013
  9. Nov 09, 2013
  10. Nov 08, 2013
  11. Oct 31, 2013
    • Richard Smith's avatar
      Factor out custom parsing for iboutletcollection and vec_type_hint attributes · b1f9a283
      Richard Smith authored
      into a separate "parse an attribute that takes a type argument" codepath. This
      results in both codepaths being a lot cleaner and simpler, and fixes some bugs
      where the type argument handling bled into the expression argument handling and
      caused us to both accept invalid and reject valid attribute arguments.
      
      llvm-svn: 193731
      b1f9a283
  12. Oct 29, 2013
  13. Oct 28, 2013
  14. Oct 24, 2013
  15. Oct 23, 2013
    • David Majnemer's avatar
      Parse: Disable delayed template parsing for constexpr functions · c85ed7e4
      David Majnemer authored
      Commit r191484 treated constexpr function templates as normal function
      templates with respect to delaying their parsing.  However, this is
      unnecessarily restrictive because there is no compatibility concern with
      constexpr, MSVC doesn't support it.
      
      Instead, simply disable delayed template parsing for constexpr function
      templates.  This largely reverts the changes made in r191484 but keeps
      it's unit test.
      
      This fixes PR17661.
      
      llvm-svn: 193274
      c85ed7e4
  16. Oct 22, 2013
  17. Oct 21, 2013
    • Serge Pavlov's avatar
      Fix to PR8880 (clang dies processing a for loop). · 6652921d
      Serge Pavlov authored
      Due to statement expressions supported as GCC extension, it is possible
      to put 'break' or 'continue' into a loop/switch statement but outside its
      body, for example:
      
          for ( ; ({ if (first) { first = 0; continue; } 0; }); )
      
      Such usage must be diagnosed as an error, GCC rejects it. To recognize
      this and similar patterns the flags BreakScope and ContinueScope are
      temporarily turned off while parsing condition expression.
      
      Differential Revision: http://llvm-reviews.chandlerc.com/D1762
      
      llvm-svn: 193073
      6652921d
  18. Oct 19, 2013
    • Kaelyn Uhrain's avatar
      Allow CorrectTypo to replace CXXScopeSpecifiers that refer to classes. · 8aa8da85
      Kaelyn Uhrain authored
      Now that CorrectTypo knows how to correctly search classes for typo
      correction candidates, there is no good reason to only replace an
      existing CXXScopeSpecifier if it refers to a namespace. While the actual
      enablement was a matter of changing a single comparison, the fallout
      from enabling the functionality required a lot more code changes
      (including my two previous commits).
      
      llvm-svn: 193020
      8aa8da85
  19. Oct 18, 2013
    • Alp Toker's avatar
      Check "late parsed" friend functions for redefinition · 19bff32e
      Alp Toker authored
      r177003 applied the late parsed template technique to friend functions
      but omitted the corresponding check for redefinitions.
      
      This patch adds the same check already in use for templates to the
      new code path in order to diagnose and reject invalid redefinitions
      that were being silently accepted.
      
      Fixes PR17324.
      
      Reviewed by Richard Smith.
      
      llvm-svn: 192948
      19bff32e
  20. Oct 15, 2013
  21. Oct 14, 2013
  22. Oct 10, 2013
  23. Oct 09, 2013
    • David Majnemer's avatar
      Make wording for certain invalid unary expressions more consistent. · 767c1f84
      David Majnemer authored
      An invalid decltype expression like 'decltype int' gives:
      error: expected '(' after 'decltype'
      
      This makes it so 'sizeof int' gives a similar one:
      error: expected parentheses around type name in sizeof expression
      
      llvm-svn: 192258
      767c1f84
    • Reid Kleckner's avatar
      -Wmicrosoft: Don't warn on non-inline pure virtual method definitions · be7a4466
      Reid Kleckner authored
      MSVC and clang with -fms-extensions allow pure virtual methods to be
      defined inline after the "= 0" tokens.  Clang warns on these because it
      is not standard, but incorrectly warns on out-of-line definitions, which
      are standard.
      
      With this change, clang will only warn on inline definitions of pure
      virtual methods.
      
      Fixes some self-host warnings on out-of-line definitions of pure virtual
      destructors.
      
      llvm-svn: 192244
      be7a4466
  24. Oct 08, 2013
  25. Sep 28, 2013
  26. Sep 27, 2013
    • David Majnemer's avatar
      AST: Handle multidimensional arrays inside of __uuidof() · 68c880b5
      David Majnemer authored
      We previously handled one-dimensional arrays but didn't consider the
      general case.  The fix is simple: keep going through subsequent
      dimensions until we get to the base element.
      
      llvm-svn: 191493
      68c880b5
    • David Majnemer's avatar
      Sema: Respect -fdelayed-template-parsing when parsing constexpr functions · c185aa7d
      David Majnemer authored
      Functions declared as constexpr must have their parsing delayed in
      -fdelayed-template-parsing mode so as not to upset later template
      instantiation.
      
      N.B. My reading of the standard makes it seem like delayed template
      parsing is at odds with constexpr.  We may want to make refinements in
      other places in clang to make constexpr play nicer with this feature.
      
      This fixes PR17334.
      
      llvm-svn: 191484
      c185aa7d
  27. Sep 24, 2013
  28. Sep 22, 2013
Loading