diff options
author | Fred Fish <fnf@specifix.com> | 1992-03-14 19:47:11 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1992-03-14 19:47:11 +0000 |
commit | 0750528ab6401a40f6673eeb29b58dea7a6e92b9 (patch) | |
tree | bd806dbe6c6ca7452ea322b009c8fc30595a4fb5 /gdb/xcoffread.c | |
parent | 88be9b53191d114a58b3212241ca27af334cdf5d (diff) | |
download | gdb-0750528ab6401a40f6673eeb29b58dea7a6e92b9.zip gdb-0750528ab6401a40f6673eeb29b58dea7a6e92b9.tar.gz gdb-0750528ab6401a40f6673eeb29b58dea7a6e92b9.tar.bz2 |
Only enable compilation of debugging functions when IBM6000 is defined
as well as DEBUG. Fails to compile otherwise.
Diffstat (limited to 'gdb/xcoffread.c')
-rw-r--r-- | gdb/xcoffread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/xcoffread.c b/gdb/xcoffread.c index 90d5f30..302d4d7 100644 --- a/gdb/xcoffread.c +++ b/gdb/xcoffread.c @@ -2273,7 +2273,7 @@ char **pp; #define DEBUG 1 -#ifdef DEBUG +#if defined (DEBUG) && defined (IBM6000) /* Needs both defined */ void dump_strtbl () { |