Skip to content
Snippets Groups Projects
  1. Mar 21, 2022
  2. Mar 11, 2022
  3. Mar 10, 2022
  4. Mar 08, 2022
  5. Mar 02, 2022
  6. Feb 18, 2022
  7. Feb 17, 2022
  8. Feb 15, 2022
    • Andre Maroneze's avatar
      [Libc] add stdalign.h · a8a81bfa
      Andre Maroneze authored
      Frama-C does not yet support _Alignof and _Alignas, but this header helps
      parsing code and emitting a proper error message.
      a8a81bfa
  9. Feb 09, 2022
  10. Feb 08, 2022
  11. Jan 26, 2022
  12. Jan 25, 2022
  13. Jan 20, 2022
  14. Jan 14, 2022
  15. Jan 13, 2022
  16. Jan 06, 2022
  17. Dec 21, 2021
  18. Dec 10, 2021
  19. Dec 03, 2021
  20. Nov 24, 2021
  21. Nov 18, 2021
    • Andre Maroneze's avatar
      [Libc] avoid spurious uninitialized warnings from the compiler · a3eb75e3
      Andre Maroneze authored
      Clang 13 emits warnings related to uninitialized variables:
      
      variable 'r' is used uninitialized whenever 'if'
      condition is false [-Wsometimes-uninitialized]
      
      This is due to the fact that the assert(0) macro, when using Frama-C's libc,
      is expanded to __FC_assert. Since it is not known by the compiler, it cannot
      consider it as "noreturn" when the condition is zero. Note that adding
      '__attribute__ ((__noreturn__))' will not work: Frama-C will assume it
      never returns, even when the condition is true.
      Initializing the 'r' variables with a default value will not change the
      actual behavior, and will avoid the warnings.
      a3eb75e3
  22. Nov 02, 2021
  23. Oct 19, 2021
  24. Oct 13, 2021
Loading