Skip to content
Snippets Groups Projects
  1. Oct 10, 2017
  2. Aug 03, 2017
  3. Jul 22, 2017
  4. Feb 24, 2016
  5. Nov 24, 2015
  6. Aug 05, 2015
  7. May 13, 2015
  8. Feb 07, 2015
  9. Dec 28, 2014
  10. Aug 29, 2014
  11. Jul 07, 2014
  12. 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
  13. Feb 17, 2014
  14. Jan 20, 2014
  15. Jan 07, 2014
  16. Sep 27, 2013
  17. Jan 14, 2013
  18. Jan 02, 2013
  19. Dec 15, 2012
Loading