diff options
author | Andrew Pinski <pinskia@physics.uc.edu> | 2006-01-31 23:18:27 +0000 |
---|---|---|
committer | Andrew Pinski <pinskia@gcc.gnu.org> | 2006-01-31 15:18:27 -0800 |
commit | d900f77d434b57af64f0e8714a2f702a8fc79f95 (patch) | |
tree | c0bbaa191110799ae749957dc450a0835428534c | |
parent | 17d761bbc821fa6a4212181966454d16dc119e96 (diff) | |
download | gcc-d900f77d434b57af64f0e8714a2f702a8fc79f95.zip gcc-d900f77d434b57af64f0e8714a2f702a8fc79f95.tar.gz gcc-d900f77d434b57af64f0e8714a2f702a8fc79f95.tar.bz2 |
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
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/gcc.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 91058ea..fe0fc87 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +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> * config/s390/s390.c (init_alignment_context): Set @@ -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; |