diff options
author | Richard Biener <rguenther@suse.de> | 2014-09-08 12:01:50 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2014-09-08 12:01:50 +0000 |
commit | e45fcf805f672888582a67ae5b5e99dce292c581 (patch) | |
tree | ae558fb3673982563bad8ffee2ad384c8e98e649 /gcc/cfgloop.h | |
parent | 0877451899153787932c99177a4933922cef620d (diff) | |
download | gcc-e45fcf805f672888582a67ae5b5e99dce292c581.zip gcc-e45fcf805f672888582a67ae5b5e99dce292c581.tar.gz gcc-e45fcf805f672888582a67ae5b5e99dce292c581.tar.bz2 |
re PR bootstrap/63204 (gtype-desc.c:887:40: error: 'struct loop' has no member named 'former_header' breaks bootstrap)
2014-09-08 Richard Biener <rguenther@suse.de>
PR bootstrap/63204
* cfgloop.c (mark_loop_for_removal): Track former header
unconditionally.
* cfgloop.h (struct loop): Add former_header member unconditionally.
* loop-init.c (fix_loop_structure): Enable bogus loop removal
diagnostic unconditionally.
From-SVN: r215012
Diffstat (limited to 'gcc/cfgloop.h')
-rw-r--r-- | gcc/cfgloop.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/cfgloop.h b/gcc/cfgloop.h index d62a415..eff0213 100644 --- a/gcc/cfgloop.h +++ b/gcc/cfgloop.h @@ -194,13 +194,11 @@ struct GTY ((chain_next ("%h.next"))) loop { /* Number of iteration analysis data for RTL. */ struct niter_desc *simple_loop_desc; -#ifdef ENABLE_CHECKING /* For sanity checking during loop fixup we record here the former loop header for loops marked for removal. Note that this prevents the basic-block from being collected but its index can still be reused. */ basic_block former_header; -#endif }; /* Flags for state of loop structure. */ |