diff options
author | Ian Lance Taylor <iant@google.com> | 2011-01-11 21:52:44 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2011-01-11 21:52:44 +0000 |
commit | fa3e04d2db350acfc275a678668c2370fc7d6f88 (patch) | |
tree | 313053553b0e39e8e2c001f92d826dd0febdee93 /gcc | |
parent | f8fb7295298da14f3ae81d27f9c926ede96d466a (diff) | |
download | gcc-fa3e04d2db350acfc275a678668c2370fc7d6f88.zip gcc-fa3e04d2db350acfc275a678668c2370fc7d6f88.tar.gz gcc-fa3e04d2db350acfc275a678668c2370fc7d6f88.tar.bz2 |
* godump.c (go_format_type): Don't generate float80.
From-SVN: r168682
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/godump.c | 5 |
2 files changed, 5 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1f80f21..a1fc0d1 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2011-01-11 Ian Lance Taylor <iant@google.com> + + * godump.c (go_format_type): Don't generate float80. + 2011-01-11 Richard Henderson <rth@redhat.com> * config/mn10300/mn10300.c (mn10300_address_cost): Remove forward diff --git a/gcc/godump.c b/gcc/godump.c index 662aa92..3b4b766 100644 --- a/gcc/godump.c +++ b/gcc/godump.c @@ -1,5 +1,5 @@ /* Output Go language descriptions of types. - Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc. + Copyright (C) 2008, 2009, 2010, 2011 Free Software Foundation, Inc. Written by Ian Lance Taylor <iant@google.com>. This file is part of GCC. @@ -387,9 +387,6 @@ go_format_type (struct godump_container *container, tree type, case 64: s = "float64"; break; - case 80: - s = "float80"; - break; default: snprintf (buf, sizeof buf, "INVALID-float-%u", TYPE_PRECISION (type)); |