diff options
Diffstat (limited to 'gcc/reg-stack.c')
-rw-r--r-- | gcc/reg-stack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/reg-stack.c b/gcc/reg-stack.c index 3aac3c1..8f98bd8 100644 --- a/gcc/reg-stack.c +++ b/gcc/reg-stack.c @@ -318,7 +318,7 @@ stack_regs_mentioned (const_rtx insn) /* Allocate some extra size to avoid too many reallocs, but do not grow too quickly. */ max = uid + uid / 20 + 1; - stack_regs_mentioned_data.safe_grow_cleared (max); + stack_regs_mentioned_data.safe_grow_cleared (max, true); } test = stack_regs_mentioned_data[uid]; |