]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - gcc/gengenrtl.c
Remove obstacks.
[thirdparty/gcc.git] / gcc / gengenrtl.c
index 535c839345fb318d8f536c6ed50524d89fc7449d..707173f904b9726d70eef3570622081782016fd5 100644 (file)
@@ -321,10 +321,7 @@ gendef (format)
      the memory and initializes it.  */
   puts ("{");
   puts ("  rtx rt;");
-  puts ("  if (ggc_p)");
-  printf ("    rt = ggc_alloc_rtx (%d);\n", (int) strlen (format));
-  puts ("  else");
-  printf ("    rt = obstack_alloc_rtx (%d);\n", (int) strlen (format));
+  printf ("  rt = ggc_alloc_rtx (%d);\n", (int) strlen (format));
 
   puts ("  memset (rt, 0, sizeof (struct rtx_def) - sizeof (rtunion));\n");
   puts ("  PUT_CODE (rt, code);");