diff options
author | Richard Guenther <rguenther@suse.de> | 2012-01-05 15:08:42 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2012-01-05 15:08:42 +0000 |
commit | 5720c0dc9cb064618394177a290c3669d9728b06 (patch) | |
tree | 367d5bb6f738516ca3efbd35212c8469083aa665 /gcc/tree-nomudflap.c | |
parent | be223aafde77591ddece8a2cd8f0bf776b89bbef (diff) | |
download | gcc-5720c0dc9cb064618394177a290c3669d9728b06.zip gcc-5720c0dc9cb064618394177a290c3669d9728b06.tar.gz gcc-5720c0dc9cb064618394177a290c3669d9728b06.tar.bz2 |
re PR middle-end/51764 (mudflap does not work with LTO)
2012-01-05 Richard Guenther <rguenther@suse.de>
PR middle-end/51764
* common.opt (Wmudflap, fmudflap, fmudflapth, fmudflapir): Move
to c.opt.
* toplev.c (process_options): Reject combining mudflap and LTO.
* tree-nomudflap.c (nogo): Use sorry instead of internal_error.
c-family/
* c.opt (Wmudflap, fmudflap, fmudflapth, fmudflapir): Move here
from common.opt.
From-SVN: r182913
Diffstat (limited to 'gcc/tree-nomudflap.c')
-rw-r--r-- | gcc/tree-nomudflap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-nomudflap.c b/gcc/tree-nomudflap.c index 44e2989..f204e2a 100644 --- a/gcc/tree-nomudflap.c +++ b/gcc/tree-nomudflap.c @@ -44,7 +44,7 @@ along with GCC; see the file COPYING3. If not see static void nogo (void) { - internal_error ("mudflap: this language is not supported"); + sorry ("mudflap: this language is not supported"); } void |