diff options
Diffstat (limited to 'gcc/config/arm/arm.c')
-rw-r--r-- | gcc/config/arm/arm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/arm/arm.c b/gcc/config/arm/arm.c index 10dca3d..666ef42 100644 --- a/gcc/config/arm/arm.c +++ b/gcc/config/arm/arm.c @@ -16609,7 +16609,7 @@ arm_barrier_cost (rtx insn) but at the moment, the basic block information seems to be corrupt by this stage of the compilation. */ int base_cost = 50; - rtx next = next_nonnote_insn (insn); + rtx_insn *next = next_nonnote_insn (insn); if (next != NULL && LABEL_P (next)) base_cost -= 20; |