-
Notifications
You must be signed in to change notification settings - Fork 273
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
CBMC does not ignore the is_padding comment on datatype fields #5818
Labels
Comments
On a second look, this doesn't seem to be
Note the absence of |
tautschnig
added a commit
to tautschnig/cbmc
that referenced
this issue
Feb 11, 2021
The only semantically relevant name information is the ID_name entry. Two components should not be considered different when they only differ in their base_name or pretty_name. Thus, use ID_C_base_name and ID_C_pretty_name, respectively, to store these. The goto binary version is incremented as goto binaries compiled before this patch are incompatible with the changes introduced here. Fixes: diffblue#5818
tautschnig
added a commit
to tautschnig/cbmc
that referenced
this issue
Mar 3, 2021
The only semantically relevant name information is the ID_name entry. Two components should not be considered different when they only differ in their base_name or pretty_name. Thus, use ID_C_base_name and ID_C_pretty_name, respectively, to store these. The goto binary version is incremented as goto binaries compiled before this patch are incompatible with the changes introduced here. Fixes: diffblue#5818
tautschnig
added a commit
to tautschnig/cbmc
that referenced
this issue
Apr 30, 2021
The only semantically relevant name information is the ID_name entry. Two components should not be considered different when they only differ in their base_name or pretty_name. Thus, use ID_C_base_name and ID_C_pretty_name, respectively, to store these. The goto binary version is incremented as goto binaries compiled before this patch are incompatible with the changes introduced here. Fixes: diffblue#5818
tautschnig
added a commit
to tautschnig/cbmc
that referenced
this issue
May 7, 2021
The only semantically relevant name information is the ID_name entry. Two components should not be considered different when they only differ in their base_name or pretty_name. Thus, use ID_C_base_name and ID_C_pretty_name, respectively, to store these. The goto binary version is incremented as goto binaries compiled before this patch are incompatible with the changes introduced here. Fixes: diffblue#5818
tautschnig
added a commit
to tautschnig/cbmc
that referenced
this issue
Aug 13, 2021
The only semantically relevant name information is the ID_name entry. Two components should not be considered different when they only differ in their base_name or pretty_name. Thus, use ID_C_base_name and ID_C_pretty_name, respectively, to store these. The goto binary version is incremented as goto binaries compiled before this patch are incompatible with the changes introduced here. Fixes: diffblue#5818
Dropping AWS label after review with @danielsn as there is no particular AWS interest. |
tautschnig
added a commit
to tautschnig/cbmc
that referenced
this issue
Nov 22, 2022
The only semantically relevant name information is the ID_name entry. Two components should not be considered different when they only differ in their base_name or pretty_name. Thus, use ID_C_base_name and ID_C_pretty_name, respectively, to store these. The goto binary version is incremented as goto binaries compiled before this patch are incompatible with the changes introduced here. Fixes: diffblue#5818
tautschnig
added a commit
to tautschnig/cbmc
that referenced
this issue
Nov 22, 2022
The only semantically relevant name information is the ID_name entry. Two components should not be considered different when they only differ in their base_name or pretty_name. Thus, use ID_C_base_name and ID_C_pretty_name, respectively, to store these. The goto binary version is incremented as goto binaries compiled before this patch are incompatible with the changes introduced here. Fixes: diffblue#5818
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
On a datatype_parameter, the field is marked with the following named sub if its padding
CBMC appears to consider two structs to have different types if they agree on all fields, but disagree on which ones have the
#is_padding
comments. Aren't comments supposed to be ignored when comparing equality?The text was updated successfully, but these errors were encountered: