From: Eric Botcazou Date: Sun, 24 Nov 2002 22:09:59 +0000 (+0000) Subject: * gcc.c-torture/compile/20021124-1.c: New test. X-Git-Tag: releases/gcc-3.2.2~252 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=264c32edd9efedb3f03b1fc3b53e4af8d493869b;p=thirdparty%2Fgcc.git * gcc.c-torture/compile/20021124-1.c: New test. From-SVN: r59439 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 7158a857a34c..338447471399 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2002-11-24  Eric Botcazou   + + * gcc.c-torture/compile/20021124-1.c: New test. + 2002-11-24  Eric Botcazou   * gcc.c-torture/execute/loop-2e.x: Let the testcase diff --git a/gcc/testsuite/gcc.c-torture/compile/20021124-1.c b/gcc/testsuite/gcc.c-torture/compile/20021124-1.c new file mode 100644 index 000000000000..3ab2b2ef4957 --- /dev/null +++ b/gcc/testsuite/gcc.c-torture/compile/20021124-1.c @@ -0,0 +1,7 @@ +/* PR optimization/8275 */ +/* Contributed by Volker Reichelt. */ + +unsigned int foo (unsigned int u) +{ + return (u >> 32) & 0xffff; +}