Skip to content
Snippets Groups Projects
  1. Sep 29, 2015
    • Nick Zavaritsky's avatar
      clang7 build issue, _Noreturn keyword · 84f44aad
      Nick Zavaritsky authored
      _Noreturn kw must appear before the function name as per C11 grammar and
      clang7 is the first one to enforce that.
      
      Ecb_noreturn macro is defined using _Noreturn keyword if C11 support is
      detected; otherwise __noreturn__ gcc attribute is used. The later must
      appear after the function parameters list.  These two methods to
      annotate a function are inherently incompatible in terms of the token
      location relative to the function declaration.
      
      Use gcc attribute exclusively since it is always available.
      84f44aad
  2. Sep 25, 2015
  3. Sep 24, 2015
  4. Sep 23, 2015
  5. Sep 22, 2015
  6. Sep 21, 2015
  7. Sep 18, 2015
  8. Sep 17, 2015
Loading