- May 06, 2022
-
-
Virgile Prevosto authored
[kernel] Ast_diff: fixes the check of goto targets by function. See merge request frama-c/frama-c!3732
-
- May 05, 2022
-
-
David Bühler authored
-
- May 04, 2022
-
-
David Bühler authored
-
David Bühler authored
-
David Bühler authored
-
Allan Blanchard authored
[wp] display more info in TacClear/Unfold See merge request frama-c/frama-c!3708
-
- May 03, 2022
-
-
David Bühler authored
AST diff See merge request frama-c/frama-c!3543
-
-
-
-
-
-
David Bühler authored
-
David Bühler authored
When a function has no correspondance in the new AST, its local and formal variables are not added to the Varinfo table.
-
David Bühler authored
In the function [gvar_correspondance].
-
-
David Bühler authored
-
David Bühler authored
Instead of silently ignoring them and always returning `Same_body.
-
David Bühler authored
-
-
-
-
David Bühler authored
-
David Bühler authored
-
David Bühler authored
-
David Bühler authored
-
-
David Bühler authored
-
David Bühler authored
-
same issue as with compinfo
-
-
it turns out that not all global varinfos are stored in Globals.Vars...
-
-
same reason as for locals: latter formals can refer to former ones
-
a local can be referenced in the type of another one, hence we can't compare them in the same environment and update said environment afterwards.
-
actually, we visit the spec of a function at its first occurrence, so that it is possible that some global logic definitions that are used in the constract haven't been visited yet.
-
-
Specifically if a global declaration `x` occurs between a function declaration `f` and the definition of `f` which uses `x`
-
-
-