-
Notifications
You must be signed in to change notification settings - Fork 274
introduce instructiont::decl_symbol() #5861
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
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
kroening
added a commit
that referenced
this pull request
Feb 24, 2021
This mirrors the change in #5861 by replacing the use of code_deadt by directly returning the symbol_exprt. The client code is simplified.
4 tasks
kroening
added a commit
that referenced
this pull request
Feb 24, 2021
This mirrors the change in #5861 by replacing the use of code_deadt by directly returning the symbol_exprt. The client code is simplified.
kroening
added a commit
that referenced
this pull request
Feb 24, 2021
This mirrors the change in #5861 by replacing the use of code_deadt by directly returning the symbol_exprt. The client code is simplified.
d301d0b
to
776362e
Compare
kroening
added a commit
that referenced
this pull request
Feb 24, 2021
This mirrors the change in #5861 by replacing the use of code_returnt by directly returning the return value expression. The client code is simplified considerably.
4 tasks
kroening
added a commit
that referenced
this pull request
Feb 24, 2021
This mirrors the change in #5861 by replacing the use of code_returnt by directly returning the return value expression. The client code is simplified considerably.
776362e
to
60892e0
Compare
kroening
added a commit
that referenced
this pull request
Feb 24, 2021
This mirrors the change in #5861 by replacing the use of code_returnt by directly returning the return value expression. The client code is simplified considerably.
kroening
added a commit
that referenced
this pull request
Feb 24, 2021
This mirrors the change in #5861 by replacing the use of code_returnt by directly returning the return value expression. The client code is simplified considerably.
60892e0
to
4fd73c1
Compare
Codecov Report
@@ Coverage Diff @@
## develop #5861 +/- ##
========================================
Coverage 72.89% 72.89%
========================================
Files 1423 1423
Lines 154229 154242 +13
========================================
+ Hits 112426 112440 +14
+ Misses 41803 41802 -1
Continue to review full report at Codecov.
|
kroening
added a commit
that referenced
this pull request
Feb 24, 2021
This mirrors the change in #5861 by replacing the use of code_deadt by directly returning the symbol_exprt. The client code is simplified.
This addresses the issue of the ambiguous dual-use of code_declt in both the C front-end and the goto-program API by replacing the use of code_declt by directly returning the symbol_exprt. The client code is simplified.
4fd73c1
to
c830360
Compare
kroening
added a commit
that referenced
this pull request
Feb 24, 2021
This mirrors the change in #5861 by replacing the use of code_returnt by directly returning the return value expression. The client code is simplified considerably.
kroening
added a commit
that referenced
this pull request
Feb 24, 2021
This mirrors the change in #5861 by replacing the use of code_returnt by directly returning the return value expression. The client code is simplified considerably.
tautschnig
approved these changes
Feb 24, 2021
kroening
added a commit
that referenced
this pull request
Feb 24, 2021
This mirrors the change in #5861 by replacing the use of code_assignt by directly returning the lhs and rhs expressions. The client code is simplified.
4 tasks
kroening
added a commit
that referenced
this pull request
Feb 25, 2021
This mirrors the change in #5861 by replacing the use of code_assignt by directly returning the lhs and rhs expressions. The client code is simplified.
martin-cs
approved these changes
Feb 25, 2021
peterschrammel
approved these changes
Feb 25, 2021
kroening
added a commit
that referenced
this pull request
Feb 26, 2021
This mirrors the change in #5861 by replacing the use of code_assignt by directly returning the lhs and rhs expressions. The client code is simplified.
kroening
added a commit
that referenced
this pull request
Mar 15, 2021
This mirrors the change in #5861 by replacing the use of code_assignt by directly returning the lhs and rhs expressions. The client code is simplified.
kroening
added a commit
that referenced
this pull request
Mar 15, 2021
This mirrors the change in #5861 by replacing the use of code_assignt by directly returning the lhs and rhs expressions. The client code is simplified.
kroening
added a commit
that referenced
this pull request
Mar 15, 2021
This mirrors the change in #5861 by replacing the use of code_assignt by directly returning the lhs and rhs expressions. The client code is simplified.
tautschnig
pushed a commit
that referenced
this pull request
May 13, 2021
This mirrors the change in #5861 by replacing the use of code_assignt by directly returning the lhs and rhs expressions. The client code is simplified.
tautschnig
pushed a commit
that referenced
this pull request
May 13, 2021
This mirrors the change in #5861 by replacing the use of code_assignt by directly returning the lhs and rhs expressions. The client code is simplified.
TGWDB
pushed a commit
to TGWDB/cbmc
that referenced
this pull request
May 17, 2021
This mirrors the change in diffblue#5861 by replacing the use of code_assignt by directly returning the lhs and rhs expressions. The client code is simplified.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This addresses the issue of the ambiguous dual-use of
code_declt
in both theC front-end and the goto-program API by replacing the use of
code_declt
bydirectly returning the
symbol_exprt
. The client code is simplified.