http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59598

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |INVALID

--- Comment #55 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Seriously this bug report is out of hand.  First let me say this: what do you
think GCC is doing wrong?  If you want report a new bug as this bug is full of
many different bugs in your code; don't reopen this bug.  Please when you open
a new one explain what you think GCC is doing wrong and provide all the needed
data files (which you are missing right now).

Second the library functions like fopen and fgetc are not provided by GCC but
by your libc vendor (in the case of mingw, mingw and to some extend even
Microsoft).  So if this code is not working due to fopen/fgetc then it is not a
bug in GCC.

Note I see at least one bug in your code, fgetc returns an int type and EOF is
-1 in int as 0xff is a valid character (not in UTF-8 though).  It might be the
cause of the bug in the first place.

Reply via email to