Commit f67e0d11 by Jakub Jelinek Committed by Jakub Jelinek

* gcc.c-torture/execute/20020219-1.c: New test.

From-SVN: r49908
parent f322b423
2002-02-20 Jakub Jelinek <jakub@redhat.com>
* gcc.c-torture/execute/20020219-1.c: New test.
2002-02-17 Jakub Jelinek <jakub@redhat.com> 2002-02-17 Jakub Jelinek <jakub@redhat.com>
* gcc.c-torture/execute/20020216-1.c: New test. * gcc.c-torture/execute/20020216-1.c: New test.
......
/* PR c/4308
This testcase failed because 0x8000000000000000 >> 0
was incorrectly folded into 0xffffffff00000000. */
extern void abort (void);
extern void exit (int);
long long foo (void)
{
long long C = 1ULL << 63, X;
int Y = 32;
X = C >> (Y & 31);
return X;
}
int main (void)
{
if (foo () != 1ULL << 63)
abort ();
exit (0);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment