From: Nathan Sidwell <nathan@acm.org>
To: GCC Patches <gcc-patches@gcc.gnu.org>
Subject: Re: [libibery PATCH] Fix bootstrap
Date: Thu, 25 May 2017 01:42:00 -0000 [thread overview]
Message-ID: <b393e0e5-81e8-e3ec-25b2-84f239f95c97@acm.org> (raw)
In-Reply-To: <17d610aa-170d-6244-34df-2c4d6d577bec@acm.org>
[-- Attachment #1: Type: text/plain, Size: 328 bytes --]
On 05/24/2017 09:13 PM, Nathan Sidwell wrote:
> On 05/24/2017 08:56 PM, Nathan Sidwell wrote:
>> On 05/24/2017 08:34 PM, Nathan Sidwell wrote:
>>> We now warn on casts to T const. Applied as obvious to fix bootstrap.
>>
>> And this fixes c-common.c
>
> And fix auto-profile.c
and lto-streamer-out.c, sigh
--
Nathan Sidwell
[-- Attachment #2: lto.diff --]
[-- Type: text/x-patch, Size: 615 bytes --]
2017-05-24 Nathan Sidwell <nathan@acm.org>
* lto-streamer-in.c (lto_input_data_block): Adjust T const cast to
avoid warning.
Index: lto-streamer-in.c
===================================================================
--- lto-streamer-in.c (revision 248441)
+++ lto-streamer-in.c (working copy)
@@ -86,7 +86,7 @@ void
lto_input_data_block (struct lto_input_block *ib, void *addr, size_t length)
{
size_t i;
- unsigned char *const buffer = (unsigned char *const) addr;
+ unsigned char *const buffer = (unsigned char *) addr;
for (i = 0; i < length; i++)
buffer[i] = streamer_read_uchar (ib);
next prev parent reply other threads:[~2017-05-25 1:22 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-05-25 0:56 Nathan Sidwell
2017-05-25 1:13 ` Nathan Sidwell
2017-05-25 1:22 ` Nathan Sidwell
2017-05-25 1:42 ` Nathan Sidwell [this message]
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=b393e0e5-81e8-e3ec-25b2-84f239f95c97@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).