diff options
Diffstat (limited to 'gcc/optabs.c')
-rw-r--r-- | gcc/optabs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/optabs.c b/gcc/optabs.c index f8ae543024b..9e4ba2b06a2 100644 --- a/gcc/optabs.c +++ b/gcc/optabs.c @@ -5201,7 +5201,7 @@ static optab new_optab (void) { int i; - optab op = (optab) ggc_alloc (sizeof (struct optab)); + optab op = ggc_alloc (sizeof (struct optab)); for (i = 0; i < NUM_MACHINE_MODES; i++) { op->handlers[i].insn_code = CODE_FOR_nothing; |