Skip to content
  1. Dec 15, 2011
    • Richard Trieu's avatar
      Modify how the -verify flag works. Currently, the verification string and · 553b2b2e
      Richard Trieu authored
      diagnostic message are compared.  If either is a substring of the other, then
      no error is given.  This gives rise to an unexpected case:
      
        // expect-error{{candidate function has different number of parameters}}
      
      will match the following error messages from Clang:
      
        candidate function has different number of parameters (expected 1 but has 2)
        candidate function has different number of parameters
      
      It will also match these other error messages:
      
        candidate function
        function has different number of parameters
        number of parameters
      
      This patch will change so that the verification string must be a substring of
      the diagnostic message before accepting.  Also, all the failing tests from this
      change have been corrected.  Some stats from this cleanup:
      
      87 - removed extra spaces around verification strings
      70 - wording updates to diagnostics
      40 - extra leading or trailing characters (typos, unmatched parens or quotes)
      35 - diagnostic level was included (error:, warning:, or note:)
      18 - flag name put in the warning (-Wprotocol)
      
      llvm-svn: 146619
      553b2b2e
    • Richard Smith's avatar
      902ca213
  2. Dec 14, 2011
  3. Dec 13, 2011
  4. Dec 12, 2011
  5. Dec 10, 2011
  6. Dec 09, 2011
  7. Dec 08, 2011
  8. Dec 06, 2011
  9. Dec 05, 2011
  10. Dec 04, 2011
  11. Dec 03, 2011
  12. Dec 01, 2011
  13. Nov 30, 2011
    • Ted Kremenek's avatar
      Don't run -Wunreachable-code on template instantiations. Different... · 7f770032
      Ted Kremenek authored
      Don't run -Wunreachable-code on template instantiations.  Different instantiations may produce different unreachable code results, and it is very difficult for us to prove that ALL instantiations of a template have specific unreachable code.  If we come up with a better solution, then we can revisit this, but this approach will at least greatly reduce the noise of this warning for code that makes use of templates.
      
      llvm-svn: 145520
      7f770032
  14. Nov 29, 2011
  15. Nov 28, 2011
  16. Nov 27, 2011
  17. Nov 24, 2011
  18. Nov 23, 2011
    • Richard Trieu's avatar
      Add feature to diagnostics that will provide more information on function · caff2478
      Richard Trieu authored
      pointer mismatch.  Cases covered are: initialization, assignment, and function
      arguments.  Additional text will give the extra information about the nature
      of the mismatch: different classes for member functions, wrong number of
      parameters, different parameter type, different return type, and function
      qualifier mismatch.
      
      llvm-svn: 145114
      caff2478
  19. Nov 21, 2011
    • Richard Smith's avatar
      Add driver arguments -ftemplate-depth=N and -fconstexpr-depth=N, with the same · 9a56882e
      Richard Smith authored
      semantics and defaults as the corresponding g++ arguments. The historical g++
      argument -ftemplate-depth-N is kept for compatibility, but modern g++ versions
      no longer document that option.
      
      Add -cc1 argument -fconstexpr-depth N to implement the corresponding
      functionality.
      
      The -ftemplate-depth=N part of this fixes PR9890.
      
      llvm-svn: 145045
      9a56882e
  20. Nov 17, 2011
  21. Nov 15, 2011
  22. Nov 12, 2011
  23. Nov 11, 2011
Loading