summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPedro Alves <palves@redhat.com>2015-02-10 11:01:21 +0000
committerPedro Alves <palves@redhat.com>2015-02-11 11:32:38 +0000
commit18ad82c16379e7ed7daa3043abdacee1d934867d (patch)
treeca3f81c0debbb53c7936f33c1b07f2eed24c357d
parente36122e9d76b35474c49aa1873e50e12c7b722b6 (diff)
downloadbinutils-gdb-18ad82c16379e7ed7daa3043abdacee1d934867d.tar.gz
xcoffread.c: delete 'within_function' definition
Linking GDB as a C++ program, we get: src/gdb/buildsym.c:226: multiple definition of `within_function' xcoffread.o:src/gdb/xcoffread.c:181: first defined here gdb/ 2015-02-11 Pedro Alves <palves@redhat.com> * xcoffread.c (within_function): Delete.
-rw-r--r--gdb/ChangeLog4
-rw-r--r--gdb/xcoffread.c5
2 files changed, 4 insertions, 5 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 17a00a0bc12..02232a5e9e2 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,7 @@
+2015-02-11 Pedro Alves <palves@redhat.com>
+
+ * xcoffread.c (within_function): Delete.
+
2015-02-11 Tom Tromey <tromey@redhat.com>
Pedro Alves <palves@redhat.com>
diff --git a/gdb/xcoffread.c b/gdb/xcoffread.c
index dde9185c914..601571129b6 100644
--- a/gdb/xcoffread.c
+++ b/gdb/xcoffread.c
@@ -119,11 +119,6 @@ static CORE_ADDR first_object_file_end;
#define INITIAL_STABVECTOR_LENGTH 40
-/* Nonzero if within a function (so symbols should be local,
- if nothing says specifically). */
-
-int within_function;
-
/* Size of a COFF symbol. I think it is always 18, so I'm not sure
there is any reason not to just use a #define, but might as well
ask BFD for the size and store it here, I guess. */