diff options
Diffstat (limited to 'gcc/c-opts.c')
-rw-r--r-- | gcc/c-opts.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/c-opts.c b/gcc/c-opts.c index 9fa6ddac104..44b6c1abf19 100644 --- a/gcc/c-opts.c +++ b/gcc/c-opts.c @@ -220,8 +220,7 @@ c_common_init_options (unsigned int argc, const char **argv ATTRIBUTE_UNUSED) flag_exceptions = c_dialect_cxx (); warn_pointer_arith = c_dialect_cxx (); - deferred_opts = (struct deferred_opt *) - xmalloc (argc * sizeof (struct deferred_opt)); + deferred_opts = xmalloc (argc * sizeof (struct deferred_opt)); result = lang_flags[c_language]; |