aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Guenther <rguenther@suse.de>2010-05-26 14:41:45 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2010-05-26 14:41:45 +0000
commitc3a026475c9a80f606084dad5a6b3d457d243b09 (patch)
tree4c299e892aa9cb119bd583f08c8b3d0525063c6a /gcc
parentcf484e9170ac7734b57a294d40dad8a51233ae32 (diff)
downloadgcc-c3a026475c9a80f606084dad5a6b3d457d243b09.zip
gcc-c3a026475c9a80f606084dad5a6b3d457d243b09.tar.gz
gcc-c3a026475c9a80f606084dad5a6b3d457d243b09.tar.bz2
opts.c (common_handle_option): Handle OPT_Ofast.
2010-05-26 Richard Guenther <rguenther@suse.de> * opts.c (common_handle_option): Handle OPT_Ofast. From-SVN: r159871
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/opts.c1
2 files changed, 5 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index becf94a..ba7bc87 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2010-05-26 Richard Guenther <rguenther@suse.de>
+
+ * opts.c (common_handle_option): Handle OPT_Ofast.
+
2010-05-26 Joseph Myers <joseph@codesourcery.com>
* diagnostic.c: Don't include opts.h.
diff --git a/gcc/opts.c b/gcc/opts.c
index 65121a4..c9255e0 100644
--- a/gcc/opts.c
+++ b/gcc/opts.c
@@ -1687,6 +1687,7 @@ common_handle_option (size_t scode, const char *arg, int value,
case OPT_O:
case OPT_Os:
+ case OPT_Ofast:
/* Currently handled in a prescan. */
break;