This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[tree-ssa] Fix typo in last toplev.c change
- From: law at redhat dot com
- To: gcc-patches at gcc dot gnu dot org
- Date: Tue, 10 Jun 2003 21:21:08 -0600
- Subject: [tree-ssa] Fix typo in last toplev.c change
- Reply-to: law at redhat dot com
Diego's change accidentially disabled dominator opts completely.
As far as I can tell a different version of the patch was checked in
than was posted. I didn't check the whole patch for discrepancies,
just this hunk of code.
* toplev.c (parse_options_and_default_flags): Fix typo in last change.
Index: toplev.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/toplev.c,v
retrieving revision 1.654.2.55
diff -c -3 -p -r1.654.2.55 toplev.c
*** toplev.c 11 Jun 2003 01:22:24 -0000 1.654.2.55
--- toplev.c 11 Jun 2003 03:11:58 -0000
*************** parse_options_and_default_flags (argc, a
*** 5113,5119 ****
flag_tree_ccp = 1;
flag_tree_dce = 1;
flag_tree_copyprop = 1;
! flag_tree_dom = 0;
}
if (optimize >= 2)
--- 5113,5119 ----
flag_tree_ccp = 1;
flag_tree_dce = 1;
flag_tree_copyprop = 1;
! flag_tree_dom = 1;
}
if (optimize >= 2)