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

From-SVN: r72035
This commit is contained in:
Josef Zlomek 2003-10-02 17:26:33 +02:00 committed by Josef Zlomek
parent b9dc9cf181
commit 2a3bf9aa52
2 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2003-10-02 Josef Zlomek <zlomekj@suse.cz>
* gcc.c-torture/compile/20031002-1.c: New test.
2003-10-02 Jakub Jelinek <jakub@redhat.com>
* g++.dg/opt/cond1.C: New test.

View File

@ -0,0 +1,9 @@
/* PR/12292
http://gcc.gnu.org/ml/gcc-patches/2003-10/msg00143.html */
char flags;
int bug12292(int t)
{
flags &= ~(1 << (t + 4));
}