* godump.c (go_format_type): Don't generate float80.
authorIan Lance Taylor <iant@google.com>
Tue, 11 Jan 2011 21:52:44 +0000 (21:52 +0000)
committerIan Lance Taylor <ian@gcc.gnu.org>
Tue, 11 Jan 2011 21:52:44 +0000 (21:52 +0000)
From-SVN: r168682

gcc/ChangeLog
gcc/godump.c

index 1f80f216960960ecbcf415f1ddfb2aea3f12f733..a1fc0d1adb1fd86328b1d58e15c4dfc57a9131df 100644 (file)
@@ -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
index 662aa92284a62ff2117c50b63bb72a861adae793..3b4b766df93f793c51542d7a4e19f5ae08cc0616 100644 (file)
@@ -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));