aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorAndrew Pinski <pinskia@physics.uc.edu>2006-01-31 23:18:27 +0000
committerAndrew Pinski <pinskia@gcc.gnu.org>2006-01-31 15:18:27 -0800
commitd900f77d434b57af64f0e8714a2f702a8fc79f95 (patch)
treec0bbaa191110799ae749957dc450a0835428534c /gcc
parent17d761bbc821fa6a4212181966454d16dc119e96 (diff)
downloadgcc-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
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/gcc.c2
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
diff --git a/gcc/gcc.c b/gcc/gcc.c
index 9fe0970..de38cf1 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;