From 2fee7708947e6e719179e5da5b5fb6e337b22cc8 Mon Sep 17 00:00:00 2001 From: Patrick Palka Date: Sat, 29 Aug 2015 18:03:37 -0400 Subject: Revert "Use gdbarch obstack to allocate the TYPE_NAME string in arch_type" This patch manually modified the autogenerated files gdbarch.[ch] instead of going through gdbarch.sh. This reverts commit aa78b3b28aeff4bb9977a313f5a8002d920b34c5. --- gdb/gdbtypes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb/gdbtypes.c') diff --git a/gdb/gdbtypes.c b/gdb/gdbtypes.c index a81258d..8204d39 100644 --- a/gdb/gdbtypes.c +++ b/gdb/gdbtypes.c @@ -4549,7 +4549,7 @@ arch_type (struct gdbarch *gdbarch, TYPE_LENGTH (type) = length; if (name) - TYPE_NAME (type) = gdbarch_obstack_strdup (gdbarch, name); + TYPE_NAME (type) = xstrdup (name); return type; } -- cgit v1.1