diff options
Diffstat (limited to 'gcc/reg-stack.c')
-rw-r--r-- | gcc/reg-stack.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/reg-stack.c b/gcc/reg-stack.c index a72f622d4df..2c542c6f62c 100644 --- a/gcc/reg-stack.c +++ b/gcc/reg-stack.c @@ -2660,9 +2660,10 @@ convert_regs_1 (file, block) beste = e; else if (beste->count > e->count) ; - else if ((e->flags & EDGE_CRITICAL) != (beste->flags & EDGE_CRITICAL)) + else if ((EDGE_CRITICAL_P (e) != 0) + != (EDGE_CRITICAL_P (beste) != 0)) { - if (e->flags & EDGE_CRITICAL) + if (EDGE_CRITICAL_P (e)) beste = e; } else if (e->src->index < beste->src->index) |