diff options
author | Jan Hubicka <hubicka@ucw.cz> | 2015-04-03 22:25:01 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2015-04-03 20:25:01 +0000 |
commit | f107227ba73fc6978c33672ecc5ab701a9e2413c (patch) | |
tree | 040a8f848fda8dc927f4f64de2f73e9604959ef3 /gcc/ipa-inline-transform.c | |
parent | 872ceb28a1be6a4ddd95d733083f4823ff7548e1 (diff) | |
download | gcc-f107227ba73fc6978c33672ecc5ab701a9e2413c.zip gcc-f107227ba73fc6978c33672ecc5ab701a9e2413c.tar.gz gcc-f107227ba73fc6978c33672ecc5ab701a9e2413c.tar.bz2 |
re PR target/65648 (Bad code due to IRA fails to recognize the clobber in parallel)
PR ipa/65648
* ipa-inline-transform.c (inline_call): Skip sanity check to work
around the ICE
From-SVN: r221861
Diffstat (limited to 'gcc/ipa-inline-transform.c')
-rw-r--r-- | gcc/ipa-inline-transform.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ipa-inline-transform.c b/gcc/ipa-inline-transform.c index 952659c..99ed512 100644 --- a/gcc/ipa-inline-transform.c +++ b/gcc/ipa-inline-transform.c @@ -304,7 +304,8 @@ inline_call (struct cgraph_edge *e, bool update_original, struct cgraph_node *callee = e->callee->ultimate_alias_target (); bool new_edges_found = false; -#ifdef ENABLE_CHECKING + /* This is used only for assert bellow. */ +#if 0 int estimated_growth = estimate_edge_growth (e); bool predicated = inline_edge_summary (e)->predicate != NULL; #endif @@ -375,7 +376,10 @@ inline_call (struct cgraph_edge *e, bool update_original, to->calls_comdat_local = false; } -#ifdef ENABLE_CHECKING + /* FIXME: This assert suffers from roundoff errors, disable it for GCC 5 + and revisit it after conversion to sreals in GCC 6. + See PR 65654. */ +#if 0 /* Verify that estimated growth match real growth. Allow off-by-one error due to INLINE_SIZE_SCALE roudoff errors. */ gcc_assert (!update_overall_summary || !overall_size || new_edges_found |