OSDN Git Service

2010-04-14 Jerry DeLisle <jvdelisle@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / gengenrtl.c
index e824ea6..149e54b 100644 (file)
@@ -76,8 +76,6 @@ type_from_format (int c)
 
     case 'E':
       return "rtvec ";
-    case 'b':
-      return "struct bitmap_head_def *";  /* bitmap - typedef not available */
     case 't':
       return "union tree_node *";  /* tree - typedef not available */
     case 'B':
@@ -109,9 +107,6 @@ accessor_from_format (int c)
     case 'E':
       return "XVEC";
 
-    case 'b':
-      return "XBITMAP";
-
     case 't':
       return "XTREE";
 
@@ -156,7 +151,8 @@ special_rtx (int idx)
 static int
 excluded_rtx (int idx)
 {
-  return (strcmp (defs[idx].enumname, "CONST_DOUBLE") == 0);
+  return ((strcmp (defs[idx].enumname, "CONST_DOUBLE") == 0)
+         || (strcmp (defs[idx].enumname, "CONST_FIXED") == 0));
 }
 
 /* Place a list of all format specifiers we use into the array FORMAT.  */