Skip to content
Snippets Groups Projects
  1. Mar 01, 2014
  2. Feb 28, 2014
    • Tobias Grosser's avatar
      Add 'remark' diagnostic type in 'clang' · 9762c971
      Tobias Grosser authored
      A 'remark' is information that is not an error or a warning, but rather some
      additional information provided to the user. In contrast to a 'note' a 'remark'
      is an independent diagnostic, whereas a 'note' always depends on another
      diagnostic.
      
      A typical use case for remark nodes is information provided to the user, e.g.
      information provided by the vectorizer about loops that have been vectorized.
      
      This patch provides the initial implementation of 'remarks'. It includes the
      actual definiton of the remark nodes, their printing as well as basic parameter
      handling. We are reusing the existing diagnostic parameters which means a remark
      can be enabled with normal '-Wdiagnostic-name' flags and can be upgraded to
      an error using '-Werror=diagnostic-name'. '-Werror' alone does not upgrade
      remarks.
      
      This patch is by intention minimal in terms of parameter handling. More
      experience and more discussions will most likely lead to further enhancements
      in the parameter handling.
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@202475 91177308-0d34-0410-b5e6-96231b3b80d8
      9762c971
  3. Feb 25, 2014
  4. Feb 24, 2014
  5. Feb 23, 2014
  6. Feb 22, 2014
  7. Feb 21, 2014
  8. Feb 20, 2014
  9. Feb 19, 2014
  10. Feb 18, 2014
  11. Feb 17, 2014
  12. Feb 13, 2014
  13. Feb 06, 2014
  14. Feb 05, 2014
  15. Jan 31, 2014
  16. Jan 28, 2014
  17. Jan 26, 2014
  18. Jan 25, 2014
  19. Jan 24, 2014
Loading