aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1992-05-25 02:32:18 +0000
committerRichard Stallman <rms@gnu.org>1992-05-25 02:32:18 +0000
commita56addeb6398c167db957eb54e7d64177442f69a (patch)
treee74ec53f68805855dfd352bda54e9b41da477503 /gcc
parent14be024e77ab8d99fde0bcd4b69bdeee55be2624 (diff)
downloadgcc-a56addeb6398c167db957eb54e7d64177442f69a.zip
gcc-a56addeb6398c167db957eb54e7d64177442f69a.tar.gz
gcc-a56addeb6398c167db957eb54e7d64177442f69a.tar.bz2
*** empty log message ***
From-SVN: r1077
Diffstat (limited to 'gcc')
-rw-r--r--gcc/toplev.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c
index 248f407..19da621 100644
--- a/gcc/toplev.c
+++ b/gcc/toplev.c
@@ -2950,7 +2950,7 @@ You Lose! You must define PREFERRED_DEBUGGING_TYPE!
if (write_symbols == XCOFF_DEBUG && !strncmp (str, "ggdb", len)
&& len >= 2)
use_gdb_dbx_extensions = 1;
- else if (write_symbols == DBX_DEBUG
+ else if (write_symbols == XCOFF_DEBUG
&& !strncmp (str, "gxcoff", len) && len >= 2)
use_gdb_dbx_extensions = 0;
else
@@ -3053,6 +3053,7 @@ You Lose! You must define PREFERRED_DEBUGGING_TYPE!
compile_file (filename);
+#ifndef OS2
#ifndef VMS
if (flag_print_mem)
{
@@ -3069,6 +3070,7 @@ You Lose! You must define PREFERRED_DEBUGGING_TYPE!
#endif /* not USG */
}
#endif /* not VMS */
+#endif /* not OS2 */
if (errorcount)
exit (FATAL_EXIT_CODE);