diff options
author | Jakub Jelinek <jakub@gcc.gnu.org> | 2008-10-14 14:00:19 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2008-10-14 14:00:19 +0200 |
commit | 847e63465e85f06389850301ba7632d4f0af6870 (patch) | |
tree | 0f82f22f4d8c34e66484ff9110ed5703093773c2 /gcc | |
parent | e0bda97e5b94a91e7232a3ee8d0347177077825e (diff) | |
download | gcc-847e63465e85f06389850301ba7632d4f0af6870.zip gcc-847e63465e85f06389850301ba7632d4f0af6870.tar.gz gcc-847e63465e85f06389850301ba7632d4f0af6870.tar.bz2 |
re PR middle-end/37805 (gcc --help=separate)
PR middle-end/37805
* opts.c (common_handle_option): Don't ICE on -fhelp=joined
and -fhelp=separate.
From-SVN: r141106
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 8 | ||||
-rw-r--r-- | gcc/opts.c | 2 |
2 files changed, 7 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 93fc32b..e246d8d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2008-10-14 Jakub Jelinek <jakub@redhat.com> + + PR middle-end/37805 + * opts.c (common_handle_option): Don't ICE on -fhelp=joined + and -fhelp=separate. + 2008-10-14 Ben Elliston <bje@au.ibm.com> * config/rs6000/rs6000.md (cell_micro): Fix formatting. @@ -9,7 +15,7 @@ 2008-10-13 Matthias Klose <doko@ubuntu.com> - * gcc/config/pa/linux-atomic.c: Work around missing header file + * config/pa/linux-atomic.c: Work around missing header file for hppa64-linux-gnu targets. 2008-10-13 Andrew Pinski <andrew_pinski@playstation.sony.com> @@ -1505,8 +1505,6 @@ common_handle_option (size_t scode, const char *arg, int value, { "warnings", CL_WARNING }, { "undocumented", CL_UNDOCUMENTED }, { "params", CL_PARAMS }, - { "joined", CL_JOINED }, - { "separate", CL_SEPARATE }, { "common", CL_COMMON }, { NULL, 0 } }; |