diff options
Diffstat (limited to 'gcc/cfglayout.c')
-rw-r--r-- | gcc/cfglayout.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/cfglayout.c b/gcc/cfglayout.c index ca400a8..bc8ed8b 100644 --- a/gcc/cfglayout.c +++ b/gcc/cfglayout.c @@ -848,6 +848,15 @@ fixup_reorder_chain (void) continue; } } + else if (extract_asm_operands (PATTERN (bb_end_insn)) != NULL) + { + /* If the old fallthru is still next, nothing to do. */ + if (bb->aux == e_fall->dest + || e_fall->dest == EXIT_BLOCK_PTR) + continue; + + /* Otherwise we'll have to use the fallthru fixup below. */ + } else { /* Otherwise we have some return, switch or computed |