diff options
author | Ben Elliston <bje@au.ibm.com> | 2009-12-14 05:06:50 +0000 |
---|---|---|
committer | Ben Elliston <bje@gcc.gnu.org> | 2009-12-14 16:06:50 +1100 |
commit | b6eb7438616d087fb7f65984e030399cde77ca70 (patch) | |
tree | c187f20fefed94788bad22ff7a85def296ac828d /gcc | |
parent | f93a40eaa321c7c6cd47790dd30ddb774d33d8ed (diff) | |
download | gcc-b6eb7438616d087fb7f65984e030399cde77ca70.zip gcc-b6eb7438616d087fb7f65984e030399cde77ca70.tar.gz gcc-b6eb7438616d087fb7f65984e030399cde77ca70.tar.bz2 |
lto-streamer-in.c (lto_get_builtin_tree): fclass can only be a BUILT_IN_NORMAL or BUILT_IN_MD.
* lto-streamer-in.c (lto_get_builtin_tree): fclass can only be a
BUILT_IN_NORMAL or BUILT_IN_MD.
From-SVN: r155206
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/lto-streamer-in.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index aef5631..7e975565 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) |