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
39719de8
Commit
39719de8
authored
2 years ago
by
Allan Blanchard
Browse files
Options
Downloads
Patches
Plain Diff
[kernel] fix warning 32/34
parent
c8c2e789
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/dune
+1
-1
1 addition, 1 deletion
src/dune
src/kernel_services/abstract_interp/offsetmap.ml
+0
-2
0 additions, 2 deletions
src/kernel_services/abstract_interp/offsetmap.ml
src/kernel_services/plugin_entry_points/dynamic.ml
+0
-7
0 additions, 7 deletions
src/kernel_services/plugin_entry_points/dynamic.ml
with
1 addition
and
10 deletions
src/dune
+
1
−
1
View file @
39719de8
...
@@ -44,7 +44,7 @@
...
@@ -44,7 +44,7 @@
(name frama_c_kernel)
(name frama_c_kernel)
(public_name frama-c.kernel)
(public_name frama-c.kernel)
(foreign_stubs (language c) (names c_bindings))
(foreign_stubs (language c) (names c_bindings))
(flags :standard -w -9
-32-34
)
(flags :standard -w -9)
(libraries frama-c.init str unix zarith ocamlgraph dynlink bytes yojson dune-site dune-site.plugins)
(libraries frama-c.init str unix zarith ocamlgraph dynlink bytes yojson dune-site dune-site.plugins)
(preprocess (staged_pps ppx_import ppx_deriving.eq))
(preprocess (staged_pps ppx_import ppx_deriving.eq))
)
)
...
...
This diff is collapsed.
Click to expand it.
src/kernel_services/abstract_interp/offsetmap.ml
+
0
−
2
View file @
39719de8
...
@@ -2384,8 +2384,6 @@ end
...
@@ -2384,8 +2384,6 @@ end
module
Int_Intervals
=
struct
module
Int_Intervals
=
struct
type
itv
=
Int
.
t
*
Int
.
t
type
intervals
=
type
intervals
=
|
Top
|
Top
|
Intervals
of
Int
.
t
*
Int_Intervals_Map
.
t
*
Int
.
t
*
Int
.
t
|
Intervals
of
Int
.
t
*
Int_Intervals_Map
.
t
*
Int
.
t
*
Int
.
t
...
...
This diff is collapsed.
Click to expand it.
src/kernel_services/plugin_entry_points/dynamic.ml
+
0
−
7
View file @
39719de8
...
@@ -86,7 +86,6 @@ let dynlib_module name file =
...
@@ -86,7 +86,6 @@ let dynlib_module name file =
(* --- Utilities --- *)
(* --- Utilities --- *)
(* -------------------------------------------------------------------------- *)
(* -------------------------------------------------------------------------- *)
let
split_word
=
Str
.(
split
(
regexp
":"
))
let
split_ext
p
=
let
split_ext
p
=
try
try
let
k
=
String
.
rindex
p
'.'
in
let
k
=
String
.
rindex
p
'.'
in
...
@@ -102,12 +101,6 @@ let is_package =
...
@@ -102,12 +101,6 @@ let is_package =
let
pkg
=
Str
.
regexp
"[a-z-_][a-z-_0-9.]*$"
in
let
pkg
=
Str
.
regexp
"[a-z-_][a-z-_0-9.]*$"
in
fun
name
->
Str
.
string_match
pkg
name
0
fun
name
->
Str
.
string_match
pkg
name
0
let
is_meta
=
let
meta
=
Str
.
regexp
"META.frama-c-[a-z-_][a-z-_0-9]*$"
in
fun
name
->
Str
.
string_match
meta
name
0
let
is_dir
d
=
Sys
.
file_exists
d
&&
Sys
.
is_directory
d
let
is_file
base
ext
=
let
is_file
base
ext
=
let
file
=
base
^
ext
in
let
file
=
base
^
ext
in
if
Sys
.
file_exists
file
then
Some
file
else
None
if
Sys
.
file_exists
file
then
Some
file
else
None
...
...
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