Commit 76ad5c10 by Mike Stump Committed by Mike Stump

darwin-c.c (BAD): Conditionalize on OPT_Wpragmas.

	* config/darwin-c.c (BAD): Conditionalize on OPT_Wpragmas.
	(BAD2): Add.

From-SVN: r113961
parent 5d384034
2006-05-21 Mike Stump <mrs@apple.com>
* config/darwin-c.c (BAD): Conditionalize on OPT_Wpragmas.
(BAD2): Add.
2006-05-21 David Edelsohn <edelsohn@gnu.org>
* config/rs6000/rs6000.md (floatsitf2): Remove constraints.
......
......@@ -37,7 +37,8 @@ Boston, MA 02110-1301, USA. */
/* Pragmas. */
#define BAD(gmsgid) do { warning (0, gmsgid); return; } while (0)
#define BAD(gmsgid) do { warning (OPT_Wpragmas, gmsgid); return; } while (0)
#define BAD2(msgid, arg) do { warning (OPT_Wpragmas, msgid, arg); return; } while (0)
static bool using_frameworks = false;
......
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