Skip to content
  1. Jan 27, 2010
    • Douglas Gregor's avatar
      Fix a major oversight in the comparison of standard conversion · 3edc4d5e
      Douglas Gregor authored
      sequences, where we would occasionally determine (incorrectly) that
      one standard conversion sequence was a proper subset of another when,
      in fact, they contained completely incomparable conversions. 
      
      This change records the types in each step within a standard
      conversion sequence, so that we can check the specific comparison
      types to determine when one sequence is a proper subset of the
      other. Fixes this testcase (thanks, Anders!), which was distilled from
      PR6095 (also thanks to Anders).
      
      llvm-svn: 94660
      3edc4d5e
  2. Jan 26, 2010
  3. Jan 24, 2010
  4. Jan 23, 2010
  5. Jan 22, 2010
  6. Jan 21, 2010
  7. Jan 19, 2010
  8. Jan 16, 2010
  9. Jan 14, 2010
  10. Jan 13, 2010
  11. Jan 12, 2010
  12. Jan 11, 2010
  13. Jan 08, 2010
    • John McCall's avatar
      Organize testcase into namespaces. · af07fbe2
      John McCall authored
      llvm-svn: 93015
      af07fbe2
    • John McCall's avatar
      Change the printing of OR_Deleted overload results to print all the candidates, · 12f97bc4
      John McCall authored
      not just the viable ones.  This is reasonable because the most common use of
      deleted functions is to exclude some implicit conversion during calls;  users
      therefore will want to figure out why some other options were excluded.
      
      Started sorting overload results.  Right now it just sorts by location in the
      translation unit (after putting viable functions first), but we can do better than
      that.
      
      Changed bool OnlyViable parameter to PrintOverloadCandidates to an enum for better
      self-documentation.
      
      llvm-svn: 92990
      12f97bc4
    • Douglas Gregor's avatar
      Improve the fix-its for -Wparentheses to ensure that the fix-it · fa1e36d0
      Douglas Gregor authored
      suggestions follow recovery. Additionally, add a note to these
      diagnostics which suggests a fix-it for changing the behavior to what
      the user probably meant. Examples:
      
      t.cpp:2:9: warning: & has lower precedence than ==; == will be evaluated first
            [-Wparentheses]
        if (i & j == k) {
              ^~~~~~~~
                (     )
      t.cpp:2:9: note: place parentheses around the & expression to evaluate it first
        if (i & j == k) {
              ^
            (    )
      
      t.cpp:14:9: warning: using the result of an assignment as a condition
      without
            parentheses [-Wparentheses]
        if (i = f()) {
            ~~^~~~~
            (      )
      t.cpp:14:9: note: use '==' to turn this assignment into an equality
      comparison
        if (i = f()) {
              ^
              ==
      
      llvm-svn: 92975
      fa1e36d0
  14. Jan 07, 2010
  15. Jan 06, 2010
Loading