mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
8c54814372
* Some initial support for FreeBSD-alpha * Add some optimizations required by g77, which still might be of some use to adventuring C/C++ programmers. Obtained from: OpenBSD (parts)
24 lines
593 B
Plaintext
24 lines
593 B
Plaintext
--- flags.h.orig Wed Dec 31 05:02:33 1997
|
|
+++ flags.h Tue Aug 11 13:31:22 1998
|
|
@@ -216,6 +216,20 @@
|
|
|
|
extern int flag_unroll_all_loops;
|
|
|
|
+/* Nonzero forces all invariant computations in loops to be moved
|
|
+ outside the loop. */
|
|
+
|
|
+extern int flag_move_all_movables;
|
|
+
|
|
+/* Nonzero forces all general induction variables in loops to be
|
|
+ strength reduced. */
|
|
+
|
|
+extern int flag_reduce_all_givs;
|
|
+
|
|
+/* Nonzero gets another run of loop_optimize performed. */
|
|
+
|
|
+extern int flag_rerun_loop_opt;
|
|
+
|
|
/* Nonzero for -fcse-follow-jumps:
|
|
have cse follow jumps to do a more extensive job. */
|
|
|