Commit d900f77d by Andrew Pinski Committed by Andrew Pinski

gcc.c (main): Correct type that is allocated for explicit_link_files.

2006-01-31  Andrew Pinski  <pinskia@physics.uc.edu>

        * gcc.c (main): Correct type that is allocated for
        explicit_link_files.

From-SVN: r110455
parent 17d761bb
2006-01-31 Andrew Pinski <pinskia@physics.uc.edu>
* gcc.c (main): Correct type that is allocated for
explicit_link_files.
2006-01-31 Jakub Jelinek <jakub@redhat.com> 2006-01-31 Jakub Jelinek <jakub@redhat.com>
* config/s390/s390.c (init_alignment_context): Set * config/s390/s390.c (init_alignment_context): Set
......
...@@ -6481,7 +6481,7 @@ main (int argc, char **argv) ...@@ -6481,7 +6481,7 @@ main (int argc, char **argv)
/* Record which files were specified explicitly as link input. */ /* 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) if (combine_flag)
combine_inputs = true; combine_inputs = true;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment