Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frama-c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
frama-c
Commits
6c9b9f99
Commit
6c9b9f99
authored
1 year ago
by
Loïc Correnson
Committed by
David Bühler
2 months ago
Browse files
Options
Downloads
Patches
Plain Diff
[eva] warning for non-analyzed functions
parent
663b963b
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/plugins/eva/utils/annot.ml
+8
-4
8 additions, 4 deletions
src/plugins/eva/utils/annot.ml
with
8 additions
and
4 deletions
src/plugins/eva/utils/annot.ml
+
8
−
4
View file @
6c9b9f99
...
@@ -331,12 +331,16 @@ let main () =
...
@@ -331,12 +331,16 @@ let main () =
Parameters
.
Annot
.
iter
Parameters
.
Annot
.
iter
begin
fun
kf
->
begin
fun
kf
->
if
Kernel_function
.
has_definition
kf
then
if
Kernel_function
.
has_definition
kf
then
let
fundec
=
Kernel_function
.
get_definition
kf
in
if
Results
.
are_available
kf
then
Self
.
feedback
"Annotate %a"
Kernel_function
.
pretty
kf
;
let
fundec
=
Kernel_function
.
get_definition
kf
in
ignore
@@
Visitor
.
visitFramacFunction
generator
fundec
Self
.
feedback
"Annotate %a"
Kernel_function
.
pretty
kf
;
ignore
@@
Visitor
.
visitFramacFunction
generator
fundec
else
Self
.
warning
"Can not annotate %a (no available results)"
Kernel_function
.
pretty
kf
else
else
Self
.
warning
"Can not annotate %a (no definition)"
Self
.
warning
"Can not annotate %a (no definition)"
Kernel_function
.
pretty
kf
;
Kernel_function
.
pretty
kf
end
end
let
()
=
Boot
.
Main
.
extend
main
let
()
=
Boot
.
Main
.
extend
main
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment