From: Nathan Sidwell <nathan@acm.org>
To: GCC Patches <gcc-patches@gcc.gnu.org>
Subject: [libibery PATCH] Fix bootstrap
Date: Thu, 25 May 2017 00:56:00 -0000 [thread overview]
Message-ID: <e0394ada-24cc-7ad3-1d3a-14db8824dd8f@acm.org> (raw)
[-- Attachment #1: Type: text/plain, Size: 98 bytes --]
We now warn on casts to T const. Applied as obvious to fix bootstrap.
nathan
--
Nathan Sidwell
[-- Attachment #2: libiberty.diff --]
[-- Type: text/x-patch, Size: 970 bytes --]
Index: ChangeLog
===================================================================
--- ChangeLog (revision 248441)
+++ ChangeLog (working copy)
@@ -1,3 +1,7 @@
+2017-05-24 Nathan Sidwell <nathan@acm.org>
+
+ * libiberty.h (ASTRDUP): Adjust cast to avoid warning.
+
2017-05-19 Eli Zaretskii <eliz@gnu.org>
* environ.h: Add #ifndef guard.
Index: libiberty.h
===================================================================
--- libiberty.h (revision 248441)
+++ libiberty.h (working copy)
@@ -724,7 +724,7 @@ extern void *C_alloca (size_t) ATTRIBUTE
# define ASTRDUP(X) \
(__extension__ ({ const char *const libiberty_optr = (X); \
const unsigned long libiberty_len = strlen (libiberty_optr) + 1; \
- char *const libiberty_nptr = (char *const) alloca (libiberty_len); \
+ char *const libiberty_nptr = (char *) alloca (libiberty_len); \
(char *) memcpy (libiberty_nptr, libiberty_optr, libiberty_len); }))
#else
# define alloca(x) C_alloca(x)
next reply other threads:[~2017-05-25 0:35 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-05-25 0:56 Nathan Sidwell [this message]
2017-05-25 1:13 ` Nathan Sidwell
2017-05-25 1:22 ` Nathan Sidwell
2017-05-25 1:42 ` Nathan Sidwell
2017-05-25 6:25 ` Richard Biener
2017-05-25 10:58 ` Nathan Sidwell
2017-05-25 11:21 ` Jonathan Wakely
2017-05-25 11:22 ` Jonathan Wakely
2017-05-25 12:35 ` Nathan Sidwell
2017-05-25 13:01 ` Richard Biener
2017-05-25 13:03 ` Jonathan Wakely
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=e0394ada-24cc-7ad3-1d3a-14db8824dd8f@acm.org \
--to=nathan@acm.org \
--cc=gcc-patches@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).