Skip to content
  1. Jul 13, 2013
  2. Jul 12, 2013
    • Kaelyn Uhrain's avatar
      Provide a better diagnostic and a fixit for a '.' or '->' before the left paren · 638264ea
      Kaelyn Uhrain authored
      of a function call.
      
      This fixes PR5898 and means we now have a better diagnostic here than GCC.
      
      llvm-svn: 186208
      638264ea
    • Richard Smith's avatar
      Unrevert r186040, reverted in r186185, with fix for PR16597. · 141942fc
      Richard Smith authored
      Original commit log:
        If we friend a declaration twice, that should not make it visible to
        name lookup in the surrounding context. Slightly rework how we handle
        friend declarations to inherit the visibility of the prior
        declaration, rather than setting a friend declaration to be visible
        whenever there was a prior declaration.
      
      llvm-svn: 186199
      141942fc
    • Chandler Carruth's avatar
      Revert r186040 to fix PR16597 while Richard investigates what the best · 9bdd1bb4
      Chandler Carruth authored
      fix is.
      
      Original commit log:
        If we friend a declaration twice, that should not make it visible to
        name lookup in the surrounding context. Slightly rework how we handle
        friend declarations to inherit the visibility of the prior
        declaration, rather than setting a friend declaration to be visible
        whenever there was a prior declaration.
      
      llvm-svn: 186185
      9bdd1bb4
    • Fariborz Jahanian's avatar
      fixes a typo caught by Jordan. · c682ef56
      Fariborz Jahanian authored
      llvm-svn: 186171
      c682ef56
    • Fariborz Jahanian's avatar
      Objective-C: Produce gcc compatible encoding of · 88890e7b
      Fariborz Jahanian authored
      ivar type in meta-data while preventing recursive
      encoding in a corner case. // rdar://14408244
      
      llvm-svn: 186169
      88890e7b
    • Daniel Jasper's avatar
      clang-format: Improve <<-formatting. · 77d5d313
      Daniel Jasper authored
      This fixes a regression caused by r186115.
      
      Before:
        Diag(aaaaaaaaaaaaaaaaaaaaaaaaaaaaa,
             bbbbbbbbb) << aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
                        << aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa;
      
      After:
        Diag(aaaaaaaaaaaaaaaaaaaaaaaaaaaaa, bbbbbbbbb)
            << aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
            << aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa;
      
      llvm-svn: 186164
      77d5d313
    • Daniel Jasper's avatar
      clang-format: Fix string literal breaking. · 5aad4e56
      Daniel Jasper authored
      Before this patch, it did not cooperate with
      Style::AlwaysBreakBeforeMultilineStrings. Thus, it would turn
      
        aaaaaaaaaaaa(aaaaaaaaaaaaa, "aaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaa");
      
      into:
      
        aaaaaaaaaaaa(aaaaaaaaaaaaa, "aaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaa "
                                    "aaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaa");
      
      and only a second format step would lead to the desired (with that
      option):
      
        aaaaaaaaaaaa(aaaaaaaaaaaaa,
                     "aaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaa "
                     "aaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaa");
      
      This could even lead to clang-format breaking the string at a different
      character and thus leading to a completely different end result.
      
      llvm-svn: 186154
      5aad4e56
    • Daniel Jasper's avatar
      clang-format: Break before/between array subscript expressions. · aea3bde0
      Daniel Jasper authored
      clang-format used to treat array subscript expressions much like
      function call (just replacing () with []). However, this is not really
      appropriate especially for expressions with multiple subscripts.
      
      Although it might seem counter-intuitive, the most consistent solution
      seems to be to always (if necessary) break before a square bracket,
      never after it. Also, multiple subscripts of the same expression should
      be aligned if they are on subsequent lines.
      
      Before:
        aaaaaaaaaaaaaaaaaaaaaaaaa[aaaaaaaaaaaaaaaaaaaaaaaaa][
            bbbbbbbbbbbbbbbbbbbbbbbbb] = c;
        aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa[
            aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa][
            bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb] = ccccccccccc;
      
      After:
        aaaaaaaaaaaaaaaaaaaaaaaaa[aaaaaaaaaaaaaaaaaaaaaaaaa]
                                 [bbbbbbbbbbbbbbbbbbbbbbbbb] = c;
        aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
            [aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa]
            [bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb] = ccccccccccc;
      
      llvm-svn: 186153
      aea3bde0
    • Jordan Rose's avatar
      [analyzer] Add support for __builtin_addressof. · 78cd51b2
      Jordan Rose authored
      ...so we don't regress on std::addressof.
      
      llvm-svn: 186140
      78cd51b2
    • Eli Friedman's avatar
      Fix crash on zero-argument assignment operator. · 84c0143e
      Eli Friedman authored
      Make sure we don't crash when checking whether an assignment operator
      without any arguments is a special member.  <rdar://problem/14397774>.
      
      llvm-svn: 186137
      84c0143e
    • Kaelyn Uhrain's avatar
      Provide a fixit hint for changing '->' to '.' if there is no operator-> · 1bb5dbf6
      Kaelyn Uhrain authored
      defined for a class.
      
      llvm-svn: 186128
      1bb5dbf6
  3. Jul 11, 2013
  4. Jul 10, 2013
Loading