pr33329.c: Change multiplier constant to 12345
authorRichard Henderson <rth@redhat.com>
Tue, 19 Jun 2012 18:19:37 +0000 (11:19 -0700)
committerRichard Henderson <rth@gcc.gnu.org>
Tue, 19 Jun 2012 18:19:37 +0000 (11:19 -0700)
From-SVN: r188788

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/i386/pr33329.c

index 38ae75a9916c348474520db0b66a29a08af652ee..de7b7d54db7ab838e3f521f45a1fa0e1c31def49 100644 (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.
index a023867c6fb9cfeaa2b1504480c3d160bb47d089..5aae9aa7decef90b63bc8caba8d93bd5457a6638 100644 (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);
     }
 }