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