Commit 56c091ab by Martin Liska Committed by Martin Liska

Poison ENABLE_CHECKING macro

	* system.h: Poison ENABLE_CHECKING macro.

From-SVN: r233817
parent ce40915e
...@@ -10,6 +10,10 @@ ...@@ -10,6 +10,10 @@
2016-02-29 Martin Liska <mliska@suse.cz> 2016-02-29 Martin Liska <mliska@suse.cz>
* system.h: Poison ENABLE_CHECKING macro.
2016-02-29 Martin Liska <mliska@suse.cz>
* hsa-gen.c (gen_body_from_gimple): Dump only if TDF_DETAILS * hsa-gen.c (gen_body_from_gimple): Dump only if TDF_DETAILS
is presented in dump flags. is presented in dump flags.
* hsa-regalloc.c (linear_scan_regalloc): Likewise. * hsa-regalloc.c (linear_scan_regalloc): Likewise.
......
...@@ -1014,6 +1014,10 @@ extern void fancy_abort (const char *, int, const char *) ATTRIBUTE_NORETURN; ...@@ -1014,6 +1014,10 @@ extern void fancy_abort (const char *, int, const char *) ATTRIBUTE_NORETURN;
#undef rindex #undef rindex
#pragma GCC poison bcopy bzero bcmp rindex #pragma GCC poison bcopy bzero bcmp rindex
/* Poison ENABLE_CHECKING macro that should be replaced with
'if (flag_checking)', or with CHECKING_P macro. */
#pragma GCC poison ENABLE_CHECKING
#endif /* GCC >= 3.0 */ #endif /* GCC >= 3.0 */
/* This macro allows casting away const-ness to pass -Wcast-qual /* This macro allows casting away const-ness to pass -Wcast-qual
......
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