This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[tree-ssa] [committed] Fix bootstrap


I messed up when applying my patch because I did not see that RTH changed tree_dump_flags
into dump_flags. This patch fixes that.


Thanks,
Andrew Pinski


2004-02-26 Andrew Pinski <pinskia@physics.uc.edu>


        * tree-ssa-phiopt.c (conditional_replacement):
        s/tree_dump_flags/dump_flags/.




Index: tree-ssa-phiopt.c =================================================================== RCS file: /cvs/gcc/gcc/gcc/Attic/tree-ssa-phiopt.c,v retrieving revision 1.1.2.5 diff -u -p -r1.1.2.5 tree-ssa-phiopt.c --- tree-ssa-phiopt.c 26 Feb 2004 18:27:15 -0000 1.1.2.5 +++ tree-ssa-phiopt.c 26 Feb 2004 18:50:52 -0000 @@ -257,7 +257,7 @@ conditional_replacement (basic_block bb, bsi = bsi_last (cond_block); bsi_remove (&bsi);

- if (dump_file && (tree_dump_flags & TDF_DETAILS))
+ if (dump_file && (dump_flags & TDF_DETAILS))
fprintf (dump_file,
"COND_EXPR in block %d and PHI in block %d converted to straightline code.\n",
cond_block->index,



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]