* gcc.c-torture/compile/991229-2.c: New test.

From-SVN: r31134
This commit is contained in:
Jeffrey A Law 1999-12-30 06:51:26 +00:00 committed by Jeff Law
parent bacaaca4b8
commit 7f0f889158
2 changed files with 11 additions and 0 deletions

View File

@ -1,5 +1,6 @@
Wed Dec 29 23:48:49 1999 Jeffrey A Law (law@cygnus.com)
* gcc.c-torture/compile/991229-2.c: New test.
* gcc.c-torture/compile/991229-1.c: New test.
Wed Dec 29 20:54:46 1999 Greg McGary <gkm@eng.ascend.com>

View File

@ -0,0 +1,10 @@
void foo ();
void update (double* r)
{
foo ();
{
register double y1;
y1 = r[ 4] - r[11];
}
}