diff options
author | gerald <gerald@FreeBSD.org> | 2003-03-26 18:35:51 +0800 |
---|---|---|
committer | gerald <gerald@FreeBSD.org> | 2003-03-26 18:35:51 +0800 |
commit | e047fa1455d107aff9653978f28d5f4c36c011c4 (patch) | |
tree | 78fe03d324879d8f11ffc5484eb604f848164a05 /lang/gcc32 | |
parent | 263445e6e0906b748b5c6516cae4cd234e0f9f37 (diff) | |
download | freebsd-ports-gnome-e047fa1455d107aff9653978f28d5f4c36c011c4.tar.gz freebsd-ports-gnome-e047fa1455d107aff9653978f28d5f4c36c011c4.tar.zst freebsd-ports-gnome-e047fa1455d107aff9653978f28d5f4c36c011c4.zip |
Remove special alpha optimization warning. alpha support now should be
sufficiently stable, and the testsuite output for FreeBSD/alpha shows no
extra -O2 failures.
Submitted by: Loren James Rittle <rittle@labs.mot.com>
Diffstat (limited to 'lang/gcc32')
-rw-r--r-- | lang/gcc32/files/patch-fc | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/lang/gcc32/files/patch-fc b/lang/gcc32/files/patch-fc index d03aaf307875..628048a209e7 100644 --- a/lang/gcc32/files/patch-fc +++ b/lang/gcc32/files/patch-fc @@ -19,23 +19,3 @@ {"stack-check", &flag_stack_check, 1, N_("Insert stack checking code into the program") }, {"argument-alias", &flag_argument_noalias, 0, -@@ -4484,6 +4489,19 @@ - if (optimize_val != -1) - { - optimize = optimize_val; -+#ifdef __alpha__ -+ if (optimize > 1) -+ { -+ #ifdef FORCE_OPTIMIZATION_DOWNGRADE -+ optimize = 1; -+ warning ("\n***\n***\t-O%d converted to \"-O1\" due to optimizer bugs on this platform\n***\n", -+ optimize_val); -+ #else -+ warning ("\n***\n***\tThe -O%d flag TRIGGERS KNOWN OPTIMIZER BUGS ON THIS PLATFORM\n***\n", -+ optimize_val); -+ #endif -+ } -+#endif /*__alpha__*/ - optimize_size = 0; - } - } |