-
Notifications
You must be signed in to change notification settings - Fork 274
move goto_check_ct to ansi-c/ #6658
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
Conversation
a04695a
to
1bf667c
Compare
1bf667c
to
d3cb7b6
Compare
d3cb7b6
to
e6a13e9
Compare
An observation while working on the follow-up commit to this: The following flags, in my opinion, should not be handled by
There is nothing C/C++ specific to these. |
3d13fa3
to
eaa0c4c
Compare
de9b595
to
358b409
Compare
358b409
to
bf2f784
Compare
The checks done in goto_check_ct are specific to C/C++, and thus belong into the ansi-c/ directory. This also moves goto_checkt to goto-programs/, which right now is merely a wrapper around goto_check_ct.
White-space changes only.
bf2f784
to
d3301c0
Compare
Codecov Report
@@ Coverage Diff @@
## develop #6658 +/- ##
===========================================
- Coverage 76.92% 76.79% -0.14%
===========================================
Files 1583 1589 +6
Lines 183314 183483 +169
===========================================
- Hits 141018 140898 -120
- Misses 42296 42585 +289
Continue to review full report at Codecov.
|
The checks done in
goto_check_ct
are specific to C/C++, and thus belong intothe ansi-c/ directory.
This also moves
goto_check
to goto-programs/, which right now is merely awrapper around
goto_check_ct
.