aboutsummaryrefslogtreecommitdiff
path: root/gdb/gdbarch.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/gdbarch.c
parentaa78b3b28aeff4bb9977a313f5a8002d920b34c5 (diff)
downloadfsf-binutils-gdb-2fee7708947e6e719179e5da5b5fb6e337b22cc8.zip
fsf-binutils-gdb-2fee7708947e6e719179e5da5b5fb6e337b22cc8.tar.gz
fsf-binutils-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/gdbarch.c')
-rw-r--r--gdb/gdbarch.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/gdb/gdbarch.c b/gdb/gdbarch.c
index 37ce22a..0d4142b 100644
--- a/gdb/gdbarch.c
+++ b/gdb/gdbarch.c
@@ -449,16 +449,6 @@ gdbarch_obstack_zalloc (struct gdbarch *arch, long size)
return data;
}
-/* See gdbarch.h. */
-
-char *
-gdbarch_obstack_strdup (struct gdbarch *gdbarch, const char *string)
-{
- char *obstring = gdbarch_obstack_zalloc (gdbarch, strlen (string) + 1);
- strcpy (obstring, string);
- return obstring;
-}
-
/* Free a gdbarch struct. This should never happen in normal
operation --- once you've created a gdbarch, you keep it around.