You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm interested in verifying C programs for information flow security, and it's rather difficult to provide useful examples without the use of global variables.
From what I can glean so far, there appears to be an error in constructing the AST, where it assumes "declarators" always have parameters (or their inner types have parameters, for arrays and pointers).
How difficult of a fix is this likely to be? I may be able to attempt it, but it looks like it might involve going through many levels of the parser to convince it that parameter-less expressions are ok in a top-level context.
The text was updated successfully, but these errors were encountered:
I'm interested in verifying C programs for information flow security, and it's rather difficult to provide useful examples without the use of global variables.
From what I can glean so far, there appears to be an error in constructing the AST, where it assumes "declarators" always have parameters (or their inner types have parameters, for arrays and pointers).
How difficult of a fix is this likely to be? I may be able to attempt it, but it looks like it might involve going through many levels of the parser to convince it that parameter-less expressions are ok in a top-level context.
The text was updated successfully, but these errors were encountered: