public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
From: Martin Liska <marxin@gcc.gnu.org>
To: gcc-cvs@gcc.gnu.org
Subject: [gcc r13-2555] opts: always compare array option values with memcmp
Date: Fri, 9 Sep 2022 05:34:59 +0000 (GMT) [thread overview]
Message-ID: <20220909053459.BA6A23858C2D@sourceware.org> (raw)
https://gcc.gnu.org/g:b237e36b3864b64894fb4c342f8647e004c8f3de
commit r13-2555-gb237e36b3864b64894fb4c342f8647e004c8f3de
Author: Martin Liska <mliska@suse.cz>
Date: Thu Sep 8 20:00:33 2022 +0200
opts: always compare array option values with memcmp
gcc/ChangeLog:
* optc-save-gen.awk: Always compare array option values with memcmp.
Diff:
---
gcc/optc-save-gen.awk | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/gcc/optc-save-gen.awk b/gcc/optc-save-gen.awk
index 233d1fbb637..49065ced0b3 100644
--- a/gcc/optc-save-gen.awk
+++ b/gcc/optc-save-gen.awk
@@ -1093,8 +1093,7 @@ for (i = 0; i < n_target_array; i++) {
name = var_target_array[i]
size = var_target_array_size[i]
type = var_target_array_type[i]
- print " if (ptr1->" name" != ptr2->" name "";
- print " || memcmp (ptr1->" name ", ptr2->" name ", " size " * sizeof(" type ")))"
+ print " if (memcmp (ptr1->" name ", ptr2->" name ", " size " * sizeof(" type ")))"
print " return false;";
}
for (i = 0; i < n_target_val; i++) {
reply other threads:[~2022-09-09 5:34 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220909053459.BA6A23858C2D@sourceware.org \
--to=marxin@gcc.gnu.org \
--cc=gcc-cvs@gcc.gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).