pr33329.c: Change multiplier constant to 12345

From-SVN: r188788
This commit is contained in:
Richard Henderson 2012-06-19 11:19:37 -07:00 committed by Richard Henderson
parent 73e9d63709
commit 3a6a2759a6
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2012-06-19 Richard Henderson <rth@redhat.com>
* gcc.target/i386/pr33329.c: Change multiplier constant to 12345.
2012-06-19 Richard Guenther <rguenther@suse.de>
* gcc.dg/tree-ssa/vrp68.c: Adjust testcase.

View File

@ -11,7 +11,7 @@ void f (void)
{
int i;
for (i = 0; i < 1024; i++)
tabs[i] = i * 2;
tabs[i] = i * 12345;
g (tabs);
}
}