Skip to content
Snippets Groups Projects
  1. Sep 10, 2024
  2. Jul 26, 2024
  3. May 13, 2024
  4. Sep 25, 2023
  5. Jul 31, 2023
  6. Feb 16, 2023
  7. Mar 10, 2022
  8. Feb 18, 2022
  9. 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
  10. Jan 26, 2022
  11. Jan 25, 2022
  12. Jan 20, 2022
  13. Jan 14, 2022
  14. Jan 06, 2022
  15. Dec 10, 2021
  16. 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
  17. Nov 02, 2021
  18. Oct 19, 2021
  19. Oct 13, 2021
  20. Oct 11, 2021
  21. Sep 30, 2021
  22. Sep 01, 2021
  23. Aug 26, 2021
  24. Jun 25, 2021
  25. Jun 10, 2021
  26. Jun 04, 2021
  27. Jun 01, 2021
  28. May 18, 2021
  29. May 12, 2021
  30. May 03, 2021
  31. Apr 26, 2021
  32. Apr 07, 2021
  33. Mar 25, 2021
Loading