From 3f5c87e338418757113bfae11ab2e8e2c76cb8ff Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Thu, 5 Jun 2008 13:30:11 +0000 Subject: 2008-06-04 Rafael Espindola * lto-function-out.c (output_tree): call error with the TREE_CODE name. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/lto-streamer@136397 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog.lto | 4 ++++ gcc/lto-function-out.c | 1 + 2 files changed, 5 insertions(+) diff --git a/gcc/ChangeLog.lto b/gcc/ChangeLog.lto index 2210f99bd29..b8bd3ca346e 100644 --- a/gcc/ChangeLog.lto +++ b/gcc/ChangeLog.lto @@ -1,3 +1,7 @@ +2008-06-04 Rafael Espindola + + * lto-function-out.c (output_tree): call error with the TREE_CODE name. + 2008-06-04 Ollie Wild * dwarf2out.c (dwarf2_called_from_lto_p): Remove. diff --git a/gcc/lto-function-out.c b/gcc/lto-function-out.c index 121a3c68d2f..beba935a09b 100644 --- a/gcc/lto-function-out.c +++ b/gcc/lto-function-out.c @@ -3216,6 +3216,7 @@ output_tree (struct output_block *ob, tree expr) /* We cannot have forms that are not explicity handled. So when this is triggered, there is some form that is not being output. */ + error ("Unimplemented code: %s", tree_code_name[code]); gcc_unreachable (); } } -- cgit v1.2.3