Skip to content
Snippets Groups Projects
Commit a5467eb1 authored by Andre Maroneze's avatar Andre Maroneze
Browse files

Merge branch 'feature/scripts/find-fun-attr' into 'master'

[analysis-script] Do not neglect function with attributes in find-fun

See merge request frama-c/frama-c!4677
parents 7f3bdb7b 0fb8cea7
No related branches found
No related tags found
Loading
...@@ -46,8 +46,16 @@ c_id_maybe_pointer = c_identifier + "[*]*" ...@@ -46,8 +46,16 @@ c_id_maybe_pointer = c_identifier + "[*]*"
optional_c_id = "(?:" + c_identifier + ")?" optional_c_id = "(?:" + c_identifier + ")?"
non_empty_whitespace = r"[ \t\r\n]+" # includes newline/CR non_empty_whitespace = r"[ \t\r\n]+" # includes newline/CR
whitespace = "[ \t\r\n]*" # includes newline/CR whitespace = "[ \t\r\n]*" # includes newline/CR
attribute = r"__attribute__\(\(" + whitespace + c_identifier + whitespace + r"\)\)"
maybe_attr = "(?:" + attribute + non_empty_whitespace + ")?"
type_prefix = ( type_prefix = (
c_id_maybe_pointer + r"(?:\s+[*]*" + c_id_maybe_pointer + ")*" + non_empty_whitespace + "[*]*" maybe_attr
+ c_id_maybe_pointer
+ r"(?:\s+[*]*"
+ c_id_maybe_pointer
+ ")*"
+ non_empty_whitespace
+ "[*]*"
) )
optional_type_prefix = "(?:" + type_prefix + whitespace + ")?" optional_type_prefix = "(?:" + type_prefix + whitespace + ")?"
argument_list = r"\([^)]*\)" argument_list = r"\([^)]*\)"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment