This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [lno] Fix the check elimination
- From: James Morrison <ja2morri at csclub dot uwaterloo dot ca>
- To: Dorit Naishlos <DORIT at il dot ibm dot com>
- Cc: Sebastian Pop <sebastian dot pop at cri dot ensmp dot fr>,gcc-patches at gcc dot gnu dot org
- Date: 31 Mar 2004 11:13:19 -0500
- Subject: Re: [lno] Fix the check elimination
- References: <OF41B08238.8A5F0330-ONC2256E68.00457248-C2256E68.0045E4FE@il.ibm.com>
Dorit Naishlos <DORIT@il.ibm.com> writes:
> Index: tree-scalar-evolution.c
> ===================================================================
> RCS file: /cvs/gcc/gcc/gcc/Attic/tree-scalar-evolution.c,v
> retrieving revision 1.1.2.26
> diff -c -3 -p -r1.1.2.26 tree-scalar-evolution.c
> *** tree-scalar-evolution.c 30 Mar 2004 17:45:52 -0000 1.1.2.26
> --- tree-scalar-evolution.c 30 Mar 2004 22:17:26 -0000
> *************** dump_chrecs_stats (FILE *file)
> *** 3467,3473 ****
> stats_nb_undetermined);
> fprintf (file, "-----------------------------------------\n");
> fprintf (file, "%d\tchrecs in the scev database\n",
> ! VARRAY_ACTIVE_SIZE (*scalar_evolution_info));
> fprintf (file, "-----------------------------------------\n");
> fprintf (file, ")\n\n");
> }
> --- 3467,3473 ----
> stats_nb_undetermined);
> fprintf (file, "-----------------------------------------\n");
> fprintf (file, "%d\tchrecs in the scev database\n",
> ! (int) VARRAY_ACTIVE_SIZE (*scalar_evolution_info));
> fprintf (file, "-----------------------------------------\n");
> fprintf (file, ")\n\n");
> }
Is this file only compiled by gcc? If so would you be able to use the
C99 %zd modifier instead of a cast?
Jim