Commit 92df03e1 by Jason Merrill Committed by Jason Merrill

* mkdeps.c (deps_calc_target): Remove incorrect 'const'.

From-SVN: r32346
parent 971cbc14
2000-03-05 Jason Merrill <jason@casey.cygnus.com>
* mkdeps.c (deps_calc_target): Remove incorrect 'const'.
2000-03-05 Mark Mitchell <mark@codesourcery.com> 2000-03-05 Mark Mitchell <mark@codesourcery.com>
* tree.def (RTL_EXPR): Update documentation. * tree.def (RTL_EXPR): Update documentation.
......
...@@ -180,7 +180,7 @@ deps_calc_target (d, t) ...@@ -180,7 +180,7 @@ deps_calc_target (d, t)
struct deps *d; struct deps *d;
const char *t; const char *t;
{ {
const char *o, *suffix; char *o, *suffix;
t = base_name (t); t = base_name (t);
o = alloca (strlen (t) + 8); o = alloca (strlen (t) + 8);
......
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