From: Andrew Pinski Date: Tue, 31 Jan 2006 23:18:27 +0000 (+0000) Subject: gcc.c (main): Correct type that is allocated for explicit_link_files. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d900f77d434b57af64f0e8714a2f702a8fc79f95;p=gcc.git gcc.c (main): Correct type that is allocated for explicit_link_files. 2006-01-31 Andrew Pinski * gcc.c (main): Correct type that is allocated for explicit_link_files. From-SVN: r110455 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 91058eaa8a5..fe0fc87fbc5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2006-01-31 Andrew Pinski + + * gcc.c (main): Correct type that is allocated for + explicit_link_files. + 2006-01-31 Jakub Jelinek * config/s390/s390.c (init_alignment_context): Set diff --git a/gcc/gcc.c b/gcc/gcc.c index 9fe0970a8af..de38cf1c581 100644 --- a/gcc/gcc.c +++ b/gcc/gcc.c @@ -6481,7 +6481,7 @@ main (int argc, char **argv) /* Record which files were specified explicitly as link input. */ - explicit_link_files = XCNEWVEC (bool, n_infiles); + explicit_link_files = XCNEWVEC (char, n_infiles); if (combine_flag) combine_inputs = true;