This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [PATCH] Fix PR bootstrap/66471
- From: Richard Biener <richard dot guenther at gmail dot com>
- To: Äsmail DÃnmez <ismail at donmez dot ws>
- Cc: Martin LiÅka <mliska at suse dot cz>, GCC Patches <gcc-patches at gcc dot gnu dot org>
- Date: Tue, 9 Jun 2015 15:35:54 +0200
- Subject: Re: [PATCH] Fix PR bootstrap/66471
- Authentication-results: sourceware.org; auth=none
- References: <5576E606 dot 1060407 at suse dot cz> <CAFiYyc3cJNiyZMufB+1_cn-c0ATd3MD4J+TiRPx5w-=EL9J6yQ at mail dot gmail dot com> <CAJ1KOAh9epZzOJEg=CzAYkonHOx+XWykXih_B0OZd=kgTLSG0Q at mail dot gmail dot com>
On Tue, Jun 9, 2015 at 3:30 PM, Äsmail DÃnmez <ismail@donmez.ws> wrote:
> Hi,
>
> On Tue, Jun 9, 2015 at 4:28 PM, Richard Biener
> <richard.guenther@gmail.com> wrote:
>> On Tue, Jun 9, 2015 at 3:11 PM, Martin LiÅka <mliska@suse.cz> wrote:
>>> Hello.
>>>
>>> Following patch renames an enum values so that they do not clash with a MinGW reserved keyword.
>>
>> Reserved keyword as in a #define? Thus simply #undef it in system.h?
>
> No, wingdi.h has the following
>
> typedef struct tagBITMAP {
> LONG bmType;
> LONG bmWidth;
> LONG bmHeight;
> LONG bmWidthBytes;
> WORD bmPlanes;
> WORD bmBitsPixel;
> LPVOID bmBits;
> } BITMAP,*PBITMAP,*NPBITMAP,*LPBITMAP;
Hmm. I see.
Patch is ok.
Thanks,
Richard.