aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/lto-streamer-in.c2
2 files changed, 7 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index aef5631..7e97556 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2009-12-14 Ben Elliston <bje@au.ibm.com>
+
+ * lto-streamer-in.c (lto_get_builtin_tree): fclass can only be a
+ BUILT_IN_NORMAL or BUILT_IN_MD.
+
2009-12-13 Eric Botcazou <ebotcazou@adacore.com>
* doc/tm.texi (STACK_CHECK_PROBE_LOAD): Delete.
diff --git a/gcc/lto-streamer-in.c b/gcc/lto-streamer-in.c
index 41f23d9..9f831a8 100644
--- a/gcc/lto-streamer-in.c
+++ b/gcc/lto-streamer-in.c
@@ -2591,6 +2591,8 @@ lto_get_builtin_tree (struct lto_input_block *ib, struct data_in *data_in)
if (!result || result == error_mark_node)
fatal_error ("target specific builtin not available");
}
+ else
+ gcc_unreachable ();
asmname = input_string (data_in, ib);
if (asmname)