-
Notifications
You must be signed in to change notification settings - Fork 273
CONTRACTS: track function parameters explicitly #7763
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CONTRACTS: track function parameters explicitly #7763
Conversation
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## develop #7763 +/- ##
===========================================
- Coverage 78.55% 78.54% -0.02%
===========================================
Files 1691 1691
Lines 193171 193183 +12
===========================================
- Hits 151755 151729 -26
- Misses 41416 41454 +38
☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
size_t n; | ||
decr(n); | ||
return 0; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add new line.
@@ -291,6 +291,13 @@ class dfcc_cfg_infot | |||
return top_level_write_set; | |||
} | |||
|
|||
/// Returns the set of top level symbols that must be tracked explicitly in |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Returns -> Return
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The method "returns" a value
Function parameter are now tracked explicitly in the write set if they are assigned from within some loop body.
07b410b
to
1beaa58
Compare
Partly fixes #7760
Function parameter are now tracked explicitly in the function write set if they are assigned from within some loop.