This is the mail archive of the gcc-help@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]

Re: Could someone tell me what is wrong here?


On Wed, Jan 19, 2011 at 1:54 PM, Jonathan Wakely <jwakely.gcc@gmail.com> wrote:
> On 19 January 2011 21:22, Brian Budge wrote:
>> I haven't done an in-depth analysis of your code, but I noticed that
>> in my own code, that casting a bool to an integer type did not always
>> yield 0 or 1 (I believe this was new in 4.5x). ?I ended up changing
>> from
>> ?+= (uint32_t)mybool
>> to
>> ?+= mybool ? 1 : 0
>>
>> Does this help in your code?
>
> That would be a (fairly serious IMHO) bug, if you can reproduce it
> please report it to bugzilla.
>

I'll see if I can work up a minimal repro.

  Brian


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