Commit 417b0fa2 by Jim Wilson Committed by Jim Wilson

Fix minor bug reported by Jan Hubicka.

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

From-SVN: r15081
parent 7053ca72
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.
......
......@@ -4179,9 +4179,11 @@ 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
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment