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
15d0d438
Commit
15d0d438
authored
2 years ago
by
Valentin Perrelle
Browse files
Options
Downloads
Patches
Plain Diff
[Eva] Do not emit kernel warnings, emit Eva warnings instead
parent
5ec2bee1
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/plugins/value/domains/multidim/abstract_structure.ml
+1
-1
1 addition, 1 deletion
src/plugins/value/domains/multidim/abstract_structure.ml
src/plugins/value/domains/multidim/segmentation.ml
+3
-3
3 additions, 3 deletions
src/plugins/value/domains/multidim/segmentation.ml
with
4 additions
and
4 deletions
src/plugins/value/domains/multidim/abstract_structure.ml
+
1
−
1
View file @
15d0d438
...
@@ -256,7 +256,7 @@ struct
...
@@ -256,7 +256,7 @@ struct
let
pick
(
m
:
t
)
=
let
pick
(
m
:
t
)
=
match
Map
.
choose_opt
m
with
match
Map
.
choose_opt
m
with
|
None
->
Kernel
.
fatal
"T
he disjunction should never be empty
"
|
None
->
assert
false
(* t
he disjunction should never be empty
*)
|
Some
(
k
,
s
)
->
k
,
s
,
Map
.
remove
k
m
|
Some
(
k
,
s
)
->
k
,
s
,
Map
.
remove
k
m
let
pretty
fmt
(
m
:
t
)
=
let
pretty
fmt
(
m
:
t
)
=
...
...
This diff is collapsed.
Click to expand it.
src/plugins/value/domains/multidim/segmentation.ml
+
3
−
3
View file @
15d0d438
...
@@ -292,7 +292,7 @@ struct
...
@@ -292,7 +292,7 @@ struct
match
Int_val
.
min_int
(
to_int_val
~
oracle
b
)
with
match
Int_val
.
min_int
(
to_int_val
~
oracle
b
)
with
|
Some
l
->
`Value
l
|
Some
l
->
`Value
l
|
None
->
|
None
->
Kern
el
.
warning
~
current
:
true
"cannot retrieve a lower bound for %a"
S
el
f
.
warning
~
current
:
true
"cannot retrieve a lower bound for %a"
pretty
b
;
pretty
b
;
`Top
`Top
...
@@ -300,7 +300,7 @@ struct
...
@@ -300,7 +300,7 @@ struct
match
Int_val
.
max_int
(
to_int_val
~
oracle
b
)
with
match
Int_val
.
max_int
(
to_int_val
~
oracle
b
)
with
|
Some
u
->
`Value
u
|
Some
u
->
`Value
u
|
None
->
|
None
->
Kern
el
.
warning
~
current
:
true
"cannot retrieve an upper bound for %a"
S
el
f
.
warning
~
current
:
true
"cannot retrieve an upper bound for %a"
pretty
b
;
pretty
b
;
`Top
`Top
...
@@ -870,7 +870,7 @@ struct
...
@@ -870,7 +870,7 @@ struct
|
`Value
m
->
m
|
`Value
m
->
m
|
`Bottom
->
assert
false
|
`Bottom
->
assert
false
|
`Top
->
|
`Top
->
Kern
el
.
warning
~
current
:
true
S
el
f
.
warning
~
current
:
true
"failed to introduce %a inside the array segmentation"
"failed to introduce %a inside the array segmentation"
Bound
.
pretty
b
;
Bound
.
pretty
b
;
m
m
...
...
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