diff options
author | bernie <bernie@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-25 22:17:02 +0000 |
---|---|---|
committer | bernie <bernie@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-25 22:17:02 +0000 |
commit | 4fd61bc65be58c3ae6a337331a66569609fa24fc (patch) | |
tree | d4ef1636ca1b7a8d3ec231e0f5b6e84697ddeb94 /gcc/genconstants.c | |
parent | f4d1037064bcbf270661c9e2b02defce1e998690 (diff) | |
download | gcc-4fd61bc65be58c3ae6a337331a66569609fa24fc.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85166 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/genconstants.c')
-rw-r--r-- | gcc/genconstants.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/genconstants.c b/gcc/genconstants.c index a49c5476d25..a4daa22027a 100644 --- a/gcc/genconstants.c +++ b/gcc/genconstants.c @@ -42,8 +42,8 @@ static int print_md_constant (void **, void *); static int print_md_constant (void **slot, void *info) { - struct md_constant *def = *slot; - FILE *file = info; + struct md_constant *def = (struct md_constant *) *slot; + FILE *file = (FILE *) info; fprintf (file, "#define %s %s\n", def->name, def->value); return 1; |