This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Bug?



Ok, I don't have the time to register and all so this is what I found out:


i have an import filter for TARGA images which is 80kb source, and translates to an 11kb
object file. now, i got complaints for "if (header.imagedescriptor & 0xF == 1) {" which is
used about.. 40 times? ok, i changed those to "if ((header.imagedescriptor & 0xF) == 1) {"
to get rid of the compiler warnings (notice the extra parantheses). now the object file is
20kb!! what is going on, as this is hardly the behaviour i was expecting?
i can mail you the source if the need arises. the compiler options were heaviest
optimizations and wall. v3.3.3.


Sincerely,
Tommi Kiviniemi


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]