diff options
Diffstat (limited to 'gcc/config/tilepro/tilepro.c')
-rw-r--r-- | gcc/config/tilepro/tilepro.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/tilepro/tilepro.c b/gcc/config/tilepro/tilepro.c index 31bc4908965..615d49040bc 100644 --- a/gcc/config/tilepro/tilepro.c +++ b/gcc/config/tilepro/tilepro.c @@ -1,5 +1,5 @@ /* Subroutines used for code generation on the Tilera TILEPro. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Walter Lee (walt@tilera.com) This file is part of GCC. @@ -3988,7 +3988,7 @@ static void tilepro_gen_bundles (void) { basic_block bb; - FOR_EACH_BB (bb) + FOR_EACH_BB_FN (bb, cfun) { rtx insn, next; rtx end = NEXT_INSN (BB_END (bb)); @@ -4259,7 +4259,7 @@ static void reorder_var_tracking_notes (void) { basic_block bb; - FOR_EACH_BB (bb) + FOR_EACH_BB_FN (bb, cfun) { rtx insn, next; rtx queue = NULL_RTX; |