diff options
author | Richard Guenther <rguenther@suse.de> | 2010-05-26 14:41:45 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2010-05-26 14:41:45 +0000 |
commit | c3a026475c9a80f606084dad5a6b3d457d243b09 (patch) | |
tree | 4c299e892aa9cb119bd583f08c8b3d0525063c6a /gcc | |
parent | cf484e9170ac7734b57a294d40dad8a51233ae32 (diff) | |
download | gcc-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/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/opts.c | 1 |
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. @@ -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; |