Fix minor bug reported by Jan Hubicka.

* toplev.c (main): Change #elif to #else/#ifdef

From-SVN: r15081
This commit is contained in:
Jim Wilson 1997-09-04 19:06:02 +00:00 committed by Jim Wilson
parent 7053ca7275
commit 417b0fa211
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,7 @@
Thu Sep 4 11:51:43 1997 Jim Wilson <wilson@cygnus.com>
* toplev.c (main): Change #elif to #else/#ifdef
* tlink.c: Include ctype.h.
* ginclude/va-mips.h: Add _VA_MIPS_H_ENUM ifdef/define/endif.

View File

@ -4179,8 +4179,10 @@ main (argc, argv, envp)
{
#ifdef DWARF2_DEBUGGING_INFO
type = DWARF2_DEBUG;
#elif defined DBX_DEBUGGING_INFO
#else
#ifdef DBX_DEBUGGING_INFO
type = DBX_DEBUG;
#endif
#endif
}
}