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

From-SVN: r49908
This commit is contained in:
Jakub Jelinek 2002-02-20 20:46:29 +01:00 committed by Jakub Jelinek
parent f322b42319
commit f67e0d112d
2 changed files with 25 additions and 0 deletions

View File

@ -1,3 +1,7 @@
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>
* gcc.c-torture/execute/20020216-1.c: New test.

View File

@ -0,0 +1,21 @@
/* 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);
}