diff options
author | Bernardo Innocenti <bernie@develer.com> | 2004-07-26 00:17:02 +0200 |
---|---|---|
committer | Bernardo Innocenti <bernie@gcc.gnu.org> | 2004-07-26 00:17:02 +0200 |
commit | 28dab13236a7f958a8dc533363dcbe8e18eeeae5 (patch) | |
tree | d4ef1636ca1b7a8d3ec231e0f5b6e84697ddeb94 /gcc/c-lex.c | |
parent | 4f3d87d661d99cb035d4f5cf72164f785fa270fc (diff) | |
download | gcc-28dab13236a7f958a8dc533363dcbe8e18eeeae5.zip gcc-28dab13236a7f958a8dc533363dcbe8e18eeeae5.tar.gz gcc-28dab13236a7f958a8dc533363dcbe8e18eeeae5.tar.bz2 |
basic-block.h (reorder_block_def): Rename to reorder_block_def_p.
* basic-block.h (reorder_block_def): Rename to reorder_block_def_p.
* c-common.c: Add missing casts from void * to other types.
* c-decl.c: Likewise.
* c-format.c: Likewise.
* c-lex.c: Likewise.
* c-pragma.c: Likewise.
* c-typeck.c: Likewise.
* defaults.h: Likewise.
* genconstants.c: Likewise.
* gengtype-lex.l: Likewise.
* genmodes.c: Likewise.
* read-rtl.c: Likewise.
* rtl.c: Likewise.
From-SVN: r85166
Diffstat (limited to 'gcc/c-lex.c')
-rw-r--r-- | gcc/c-lex.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/c-lex.c b/gcc/c-lex.c index 0e1473b..091ec80 100644 --- a/gcc/c-lex.c +++ b/gcc/c-lex.c @@ -628,7 +628,7 @@ interpret_float (const cpp_token *token, unsigned int flags) /* I or J suffix. */ copylen--; - copy = alloca (copylen + 1); + copy = (char *) alloca (copylen + 1); memcpy (copy, token->val.str.text, copylen); copy[copylen] = '\0'; @@ -710,7 +710,7 @@ lex_string (const cpp_token *tok, tree *valp, bool objc_string) } } while (tok->type == CPP_STRING || tok->type == CPP_WSTRING); - strs = obstack_finish (&str_ob); + strs = (cpp_string *) obstack_finish (&str_ob); } /* We have read one more token than we want. */ |