* gcc.c-torture/execute/20000412-1.c: Reduce some more.

From-SVN: r33094
This commit is contained in:
Richard Henderson 2000-04-12 00:42:56 -07:00 committed by Richard Henderson
parent eb802827f4
commit 7265c4202b
2 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,7 @@
2000-04-10 Richard Henderson <rth@cygnus.com>
* gcc.c-torture/execute/20000412-1.c: Reduce some more.
* gcc.c-torture/execute/20000412-1.c: New test.
2000-04-10 Nathan Sidwell <nathan@codesourcery.com>

View File

@ -1,12 +1,10 @@
enum { TOTAL_KEYWORDS = 207 };
short int i = -1;
const char * const wordlist[TOTAL_KEYWORDS];
const char * const wordlist[207];
const char * const *
foo(void)
{
register const char * const *wordptr = &wordlist[TOTAL_KEYWORDS + i];
register const char * const *wordptr = &wordlist[207u + i];
return wordptr;
}