2000-10-16 Kazu Hirata <kazu@hxi.com>
* config/h8300/h8300.c: Remove obstack.
From-SVN: r36880
+2000-10-16 Kazu Hirata <kazu@hxi.com>
+
+ * config/h8300/h8300.c: Remove obstack.
+
2000-10-16 Jakub Jelinek <jakub@redhat.com>
* rtlanal.c (may_trap_p): Check operand modes of COMPARE.
#include "recog.h"
#include "expr.h"
#include "function.h"
-#include "obstack.h"
#include "toplev.h"
#include "c-pragma.h"
#include "tm_p.h"
return 0;
}
-extern struct obstack *saveable_obstack;
-
void
h8300_encode_label (decl)
tree decl;
int len = strlen (str);
char *newstr;
- newstr = obstack_alloc (saveable_obstack, len + 2);
+ newstr = ggc_alloc_string (NULL, len + 1);
strcpy (newstr + 1, str);
*newstr = '&';