aboutsummaryrefslogtreecommitdiff
path: root/gdb/gdbtypes.c
diff options
context:
space:
mode:
authorPatrick Palka <patrick@parcs.ath.cx>2015-08-29 18:03:37 -0400
committerPatrick Palka <patrick@parcs.ath.cx>2015-08-29 18:24:29 -0400
commit2fee7708947e6e719179e5da5b5fb6e337b22cc8 (patch)
tree8827099c833d14fc0f4cca508481b82448160ecb /gdb/gdbtypes.c
parentaa78b3b28aeff4bb9977a313f5a8002d920b34c5 (diff)
downloadgdb-2fee7708947e6e719179e5da5b5fb6e337b22cc8.zip
gdb-2fee7708947e6e719179e5da5b5fb6e337b22cc8.tar.gz
gdb-2fee7708947e6e719179e5da5b5fb6e337b22cc8.tar.bz2
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.
Diffstat (limited to 'gdb/gdbtypes.c')
-rw-r--r--gdb/gdbtypes.c2
1 files changed, 1 insertions, 1 deletions
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;
}