| Submitter | Joey Ye |
|---|---|
| Date | March 4, 2013, 8:10 a.m. |
| Message ID | <000101ce18af$c9e89750$5db9c5f0$@ye@arm.com> |
| Download | mbox | patch |
| Permalink | /patch/224634/ |
| State | New |
| Headers | show |
Comments
On Mon, 4 Mar 2013, Joey Ye wrote:
> + char *new_spec = (char *)xmalloc (len + number_of_space + 1);
Space in cast between "(char *)" and "xmalloc". OK with that change.
Patch
Index: gcc/gcc.c =================================================================== --- gcc/gcc.c (revision 195189) +++ gcc/gcc.c (working copy) @@ -265,6 +265,7 @@ static const char *compare_debug_auxbase_opt_spec_function (int, const char **); static const char *pass_through_libs_spec_func (int, const char **); static const char *replace_extension_spec_func (int, const char **); +static char *convert_white_space (char *);