This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Re: cc1 chokes on x86
- To: "Kevin P. Neal" <kpneal at pobox dot com>, gcc-bugs at gcc dot gnu dot org
- Subject: Re: cc1 chokes on x86
- From: llewelly at dbritsch dot dsl dot xmission dot com
- Date: 28 Jul 2000 14:09:47 -0600
- References: <20000728162540.A23031@tome.neutralgood.org>
"Kevin P. Neal" <kpneal@pobox.com> writes:
[snip]
> With this code:
>
> void test_func(unsigned char val)
> {
> printf("%x\n", val);
>
> return;
> }
>
> int main(int argc, char **argv)
> {
> test_func("000"[0] - '0' + 0xf0);
>
> return(0);
> }
>
> I get the exact same error on Linux.
>
[snip]
gcc 2.96 20000626 (experimental) compiles your code without errors, and
the executable prints
f0
when run, so I think the bug is fixed.
Thank you for your bug report.