flags.h (flag_branch_on_count_reg): Always declare
authorMichael Hayes <m.hayes@elec.canterbury.ac.nz>
Thu, 8 Oct 1998 03:30:32 +0000 (03:30 +0000)
committerJeff Law <law@gcc.gnu.org>
Thu, 8 Oct 1998 03:30:32 +0000 (21:30 -0600)
* flags.h (flag_branch_on_count_reg): Always declare
* toplev.c (flag_branch_on_count_reg): Likewise.
* toplev.c: Fix typos.

From-SVN: r22910

gcc/ChangeLog
gcc/flags.h
gcc/toplev.c

index 5547630e0553342eda938abcb329063db58e93b2..3ecdb777ea810690e271feb87baaa6ebeac5942a 100644 (file)
@@ -1,5 +1,9 @@
 Thu Oct  8 04:26:20 1998  Michael Hayes <m.hayes@elec.canterbury.ac.nz>
 
+       * flags.h (flag_branch_on_count_reg): Always declare 
+       * toplev.c (flag_branch_on_count_reg): Likewise.
+       * toplev.c: Fix typos.
+
        * real.c (c4xtoe): Remove unused variables.  Add some missing parens.
        (toc4x): Similarly.
 
index 3b7dd5ee3b8dd47c5b90f960cec2eec4f22a8ac3..7c853d0b259a4dfb680fc02879e471e51eb0a795 100644 (file)
@@ -345,11 +345,11 @@ extern int flag_schedule_interblock;
 extern int flag_schedule_speculative;
 extern int flag_schedule_speculative_load;
 extern int flag_schedule_speculative_load_dangerous;
+#endif  /* HAIFA */
 
 /* flag_on_branch_count_reg means try to replace add-1,compare,branch tupple
    by a cheaper branch, on a count register. */
 extern int flag_branch_on_count_reg;
-#endif  /* HAIFA */
 
 
 /* Nonzero means put things in delayed-branch slots if supported. */
index 7193cecd0222b96cf1cca9070f13cf0dd2c21fb1..e2ddcaf40675b40ade3c01e49ebaf161a5ea8bbb 100644 (file)
@@ -654,12 +654,11 @@ int flag_schedule_interblock = 1;
 int flag_schedule_speculative = 1;
 int flag_schedule_speculative_load = 0;
 int flag_schedule_speculative_load_dangerous = 0;
+#endif  /* HAIFA */
 
 /* flag_on_branch_count_reg means try to replace add-1,compare,branch tupple
    by a cheaper branch, on a count register. */
 int flag_branch_on_count_reg;
-#endif  /* HAIFA */
-
 
 /* -finhibit-size-directive inhibits output of .size for ELF.
    This is used only for compiling crtstuff.c, 
@@ -806,7 +805,7 @@ lang_independent_options f_options[] =
   {"unroll-loops", &flag_unroll_loops, 1,
    "Perform loop unrolling when interation count is known" },
   {"unroll-all-loops", &flag_unroll_all_loops, 1,
-   "Perofm loop onrolling for all loops" },
+   "Perform loop unrolling for all loops" },
   {"move-all-movables", &flag_move_all_movables, 1,
    "Force all loop invariant computations out of loops" },
   {"reduce-all-givs", &flag_reduce_all_givs, 1,
@@ -862,9 +861,9 @@ lang_independent_options f_options[] =
    "Allow speculative motion of some loads" },
   {"sched-spec-load-dangerous",&flag_schedule_speculative_load_dangerous, 1,
    "Allow speculative motion of more loads" },
+#endif  /* HAIFA */
   {"branch-count-reg",&flag_branch_on_count_reg, 1,
    "Replace add,compare,branch with branch on count reg"},
-#endif  /* HAIFA */
   {"pic", &flag_pic, 1,
    "Generate position independent code, if possible"},
   {"PIC", &flag_pic, 2, ""},