Thread overview
Internal compiler error with 0.99
Aug 20, 2004
Andy Friesen
Aug 20, 2004
Russ Lewis
Aug 20, 2004
sai
Aug 20, 2004
Andy Friesen
Aug 20, 2004
Walter
August 20, 2004
Given:

    struct ICONINFO {
            bool fIcon;
    }

    int main() {
        ICONINFO info;
        info.fIcon = true;
        return 0;
    }

The error is:

    Internal error: ..\ztc\cgcs.c 213

 -- andy
August 20, 2004
Andy Friesen wrote:
> Given:
> 
>     struct ICONINFO {
>             bool fIcon;
>     }
> 
>     int main() {
>         ICONINFO info;
>         info.fIcon = true;
>         return 0;
>     }
> 
> The error is:
> 
>     Internal error: ..\ztc\cgcs.c 213

I'm getting thrashed by this same bug...

August 20, 2004
I am too !


In article <cg5334$d7s$1@digitaldaemon.com>, Russ Lewis says...
>
>Andy Friesen wrote:
>> Given:
>> 
>>     struct ICONINFO {
>>             bool fIcon;
>>     }
>> 
>>     int main() {
>>         ICONINFO info;
>>         info.fIcon = true;
>>         return 0;
>>     }
>> 
>> The error is:
>> 
>>     Internal error: ..\ztc\cgcs.c 213
>
>I'm getting thrashed by this same bug...
>


August 20, 2004
Russ Lewis wrote:

> Andy Friesen wrote:
> 
>> Given:
>>
>>     struct ICONINFO {
>>             bool fIcon;
>>     }
>>
>>     int main() {
>>         ICONINFO info;
>>         info.fIcon = true;
>>         return 0;
>>     }
>>
>> The error is:
>>
>>     Internal error: ..\ztc\cgcs.c 213
> 
> 
> I'm getting thrashed by this same bug...

The easy way to deal with this is to just use byte instead of bit.  (I'd bet that this is more C-friendly too)

 -- andy
August 20, 2004
"Russ Lewis" <spamhole-2001-07-16@deming-os.org> wrote in message news:cg5334$d7s$1@digitaldaemon.com...
> I'm getting thrashed by this same bug...

Looks like I broke something with .99. I'll see about fixing it.