Commit 57eb6503 by Neil Booth Committed by Neil Booth

lang.opt: Add -Wall.

	* lang.opt: Add -Wall.
	* misc.c (gnat_handle_option): Handle it.

From-SVN: r67935
parent e8fb93c9
2003-06-14 Neil Booth <neil@daikokuya.co.uk>
* lang.opt: Add -Wall.
* misc.c (gnat_handle_option): Handle it.
2003-06-12 Neil Booth <neil@daikokuya.co.uk> 2003-06-12 Neil Booth <neil@daikokuya.co.uk>
* misc.c (gnat_handle_option): Fix warnings. * misc.c (gnat_handle_option): Fix warnings.
......
...@@ -44,6 +44,9 @@ ...@@ -44,6 +44,9 @@
I I
Ada Joined Separate Ada Joined Separate
Wall
Ada
fRTS fRTS
Ada RejectNegative Ada RejectNegative
......
...@@ -248,6 +248,10 @@ gnat_handle_option (size_t scode, const char *arg, int value ATTRIBUTE_UNUSED) ...@@ -248,6 +248,10 @@ gnat_handle_option (size_t scode, const char *arg, int value ATTRIBUTE_UNUSED)
gnat_argc++; gnat_argc++;
break; break;
case OPT_Wall:
/* All front ends are expected to accept this. */
break;
case OPT_fRTS: case OPT_fRTS:
gnat_argv[gnat_argc] = xstrdup ("-fRTS"); gnat_argv[gnat_argc] = xstrdup ("-fRTS");
gnat_argc++; gnat_argc++;
......
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