diff options
author | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-01-05 15:08:42 +0000 |
---|---|---|
committer | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-01-05 15:08:42 +0000 |
commit | 9ea022ce271af3940dd9a9775e8b296a699e3d38 (patch) | |
tree | 367d5bb6f738516ca3efbd35212c8469083aa665 /gcc/tree-nomudflap.c | |
parent | 5915597d682bea3f891f46039d0b930ede609933 (diff) | |
download | gcc-9ea022ce271af3940dd9a9775e8b296a699e3d38.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@182913 138bc75d-0d04-0410-961f-82ee72b054a4
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 44e29891386..f204e2a064c 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 |