go-lang.c: remove a redundant cast
authorDavid Malcolm <dmalcolm@redhat.com>
Tue, 25 Oct 2016 14:47:38 +0000 (14:47 +0000)
committerDavid Malcolm <dmalcolm@gcc.gnu.org>
Tue, 25 Oct 2016 14:47:38 +0000 (14:47 +0000)
gcc/go/ChangeLog:
* go-lang.c (go_langhook_type_for_mode): Remove redundant cast
from result of GET_MODE_CLASS.  Minor formatting fixes.

From-SVN: r241514

gcc/go/ChangeLog
gcc/go/go-lang.c

index 28d4f6f295b92a9e796513a522977f018b5f22da..8a047077cad91bf8d038ff76f31e988d5e9839ec 100644 (file)
@@ -1,3 +1,8 @@
+2016-10-25  David Malcolm  <dmalcolm@redhat.com>
+
+       * go-lang.c (go_langhook_type_for_mode): Remove redundant cast
+       from result of GET_MODE_CLASS.  Minor formatting fixes.
+
 2016-10-13  Thomas Preud'homme  <thomas.preudhomme@arm.com>
 
        * go-backend.c: Include memmodel.h.
index 8d66ee0e176af560af5612f4958ed9c614eb17aa..e7305b85775b0ec7f87e1bce2dbf442a4368e2fb 100644 (file)
@@ -373,10 +373,9 @@ go_langhook_type_for_mode (machine_mode mode, int unsignedp)
       return NULL_TREE;
     }
 
-  // FIXME: This static_cast should be in machmode.h.
-  enum mode_class mc = static_cast<enum mode_class>(GET_MODE_CLASS(mode));
+  enum mode_class mc = GET_MODE_CLASS (mode);
   if (mc == MODE_INT)
-    return go_langhook_type_for_size(GET_MODE_BITSIZE(mode), unsignedp);
+    return go_langhook_type_for_size (GET_MODE_BITSIZE (mode), unsignedp);
   else if (mc == MODE_FLOAT)
     {
       switch (GET_MODE_BITSIZE (mode))