diff options
Diffstat (limited to 'gcc/cfghooks.c')
-rw-r--r-- | gcc/cfghooks.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cfghooks.c b/gcc/cfghooks.c index 183d54e..9f70604 100644 --- a/gcc/cfghooks.c +++ b/gcc/cfghooks.c @@ -206,8 +206,8 @@ dump_bb (basic_block bb, FILE *outf, int indent) edge e; char *s_indent; - s_indent = (char *) alloca ((size_t) indent + 1); - memset ((void *) s_indent, ' ', (size_t) indent); + s_indent = alloca ((size_t) indent + 1); + memset (s_indent, ' ', (size_t) indent); s_indent[indent] = '\0'; fprintf (outf, ";;%s basic block %d, loop depth %d, count ", |