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
99289d42
Commit
99289d42
authored
4 years ago
by
Andre Maroneze
Browse files
Options
Downloads
Patches
Plain Diff
[analysis-scripts] minor fixes
parent
67dc394d
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
bin/frama-c-script
+1
-1
1 addition, 1 deletion
bin/frama-c-script
share/analysis-scripts/function_finder.py
+1
-1
1 addition, 1 deletion
share/analysis-scripts/function_finder.py
with
2 additions
and
2 deletions
bin/frama-c-script
+
1
−
1
View file @
99289d42
...
...
@@ -52,7 +52,7 @@ usage() {
echo " Also opens it in a browser, unless variable NOGUI is set."
echo ""
echo " - help"
echo " Display this help message and exit."
echo " Display
s
this help message and exit
s
."
echo ""
echo " - heuristic-detect-recursion file..."
echo " Uses a heuristic, syntactic-based, callgraph to detect recursive"
...
...
This diff is collapsed.
Click to expand it.
share/analysis-scripts/function_finder.py
+
1
−
1
View file @
99289d42
...
...
@@ -178,7 +178,7 @@ def find_definitions_and_declarations(want_defs, want_decls, filename, newlines)
return
res
# list of identifiers which are never function calls
calls_blacklist
=
[
"
if
"
,
"
while
"
,
"
for
"
,
"
return
"
]
calls_blacklist
=
[
"
if
"
,
"
while
"
,
"
for
"
,
"
return
"
,
"
sizeof
"
,
"
switch
"
,
"
_Alignas
"
]
# Returns a list of tuples (fname, line, offset) for each function call.
#
...
...
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