re PR c/5279 (Internal compiler error in gen_highpart, at emit-rtl.c:1184)

2002-01-06  Craig Rodrigues  <rodrigc@gcc.gnu.org>

        PR c/5279
        * gcc.c-torture/compile/20020106-1.c: New test.

From-SVN: r48585
This commit is contained in:
Craig Rodrigues 2002-01-06 20:44:59 +00:00
parent 58ad89b1a5
commit a858ca75e2
2 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2002-01-06 Craig Rodrigues <rodrigc@gcc.gnu.org>
PR c/5279
* gcc.c-torture/compile/20020106-1.c: New test.
2002-01-05 Hans-Peter Nilsson <hp@bitrange.com>
* gcc.c-torture/execute/nestfunc-4.c: New test.

View File

@ -0,0 +1,8 @@
/* Origin: PR c/5279 from <wilco@equator.com>. */
int
foo ()
{
extern long long Y;
return (0 > Y++);
}