diff options
author | Richard Biener <rguenther@suse.de> | 2015-10-28 10:07:03 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2015-10-28 10:07:03 +0000 |
commit | 6d27d749d70f21c40b58918b9aca2cfbb2f8d5e4 (patch) | |
tree | 627c9143b80f24e29686e3f31ed1c27d0dfb24c7 /gcc/passes.c | |
parent | 254b22cc79c594756343f645cbcf7163e39cf5b4 (diff) | |
download | gcc-6d27d749d70f21c40b58918b9aca2cfbb2f8d5e4.zip gcc-6d27d749d70f21c40b58918b9aca2cfbb2f8d5e4.tar.gz gcc-6d27d749d70f21c40b58918b9aca2cfbb2f8d5e4.tar.bz2 |
common.opt (fchecking): New flag controlling flag_checking.
2015-10-28 Richard Biener <rguenther@suse.de>
* common.opt (fchecking): New flag controlling flag_checking.
* passes.c (verify_curr_properties): Drop DEBUG_FUNCTION.
* timevar.c (timer::print): Adjust output.
* doc/invoke.texi (fchecking): Document.
From-SVN: r229480
Diffstat (limited to 'gcc/passes.c')
-rw-r--r-- | gcc/passes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/passes.c b/gcc/passes.c index 43dd4e0..82834ca 100644 --- a/gcc/passes.c +++ b/gcc/passes.c @@ -2073,7 +2073,7 @@ clear_last_verified (function *fn, void *data ATTRIBUTE_UNUSED) /* Helper function. Verify that the properties has been turn into the properties expected by the pass. */ -static void DEBUG_FUNCTION +static void verify_curr_properties (function *fn, void *data) { unsigned int props = (size_t)data; |