2002-11-19 �Eric Botcazou �<ebotcazou@libertysurf.fr>

* gcc.c-torture/compile/20021119-1.c: New test.

From-SVN: r59276
This commit is contained in:
Eric Botcazou 2002-11-19 20:19:50 +00:00 committed by Eric Botcazou
parent 35f1c975a3
commit d5fc82c51a
2 changed files with 15 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2002-11-19  Eric Botcazou  <ebotcazou@libertysurf.fr>
* gcc.c-torture/compile/20021119-1.c: New test.
2002-11-19 Jason Thorpe <thorpej@wasabisystems.com>
* gcc.dg/duff-1.c: New test.

View File

@ -0,0 +1,11 @@
/* PR c/8588 */
/* Contributed by Volker Reichelt. */
/* Verify that GCC converts integer constants
in shift operations. */
void foo()
{
unsigned int i, j;
j = (i >> 0xf0);
}