From d900f77d434b57af64f0e8714a2f702a8fc79f95 Mon Sep 17 00:00:00 2001 From: Andrew Pinski Date: Tue, 31 Jan 2006 23:18:27 +0000 Subject: [PATCH] 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 --- gcc/ChangeLog | 5 +++++ gcc/gcc.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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; -- 2.30.2