From: rguenth Date: Wed, 26 May 2010 14:41:45 +0000 (+0000) Subject: 2010-05-26 Richard Guenther X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e00798c75a3319921fefe5f759cb1156b3f75bc6;p=thirdparty%2Fgcc.git 2010-05-26 Richard Guenther * opts.c (common_handle_option): Handle OPT_Ofast. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@159871 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index becf94a1ae21..ba7bc87a22e5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2010-05-26 Richard Guenther + + * opts.c (common_handle_option): Handle OPT_Ofast. + 2010-05-26 Joseph Myers * diagnostic.c: Don't include opts.h. diff --git a/gcc/opts.c b/gcc/opts.c index 65121a4222eb..c9255e0f0f9b 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;