aboutsummaryrefslogtreecommitdiff
path: root/gcc/defaults.h
diff options
context:
space:
mode:
authorBernardo Innocenti <bernie@develer.com>2004-07-25 22:17:02 +0000
committerBernardo Innocenti <bernie@develer.com>2004-07-25 22:17:02 +0000
commit0ebc72b20c87150d64b784a4117c4fd6f6fb2aa9 (patch)
treed4ef1636ca1b7a8d3ec231e0f5b6e84697ddeb94 /gcc/defaults.h
parent8794875db7bebbf8142ec79f0e3a45e24912cbd6 (diff)
* 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: https://gcc.gnu.org/svn/gcc/trunk@85166 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/defaults.h')
-rw-r--r--gcc/defaults.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/defaults.h b/gcc/defaults.h
index e479affa4ef..763601c5f7a 100644
--- a/gcc/defaults.h
+++ b/gcc/defaults.h
@@ -67,7 +67,8 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
#ifndef ASM_FORMAT_PRIVATE_NAME
# define ASM_FORMAT_PRIVATE_NAME(OUTPUT, NAME, LABELNO) \
do { const char *const name_ = (NAME); \
- char *const output_ = (OUTPUT) = alloca (strlen (name_) + 32);\
+ char *const output_ = (OUTPUT) = \
+ (char *) alloca (strlen (name_) + 32); \
sprintf (output_, ASM_PN_FORMAT, name_, (unsigned long)(LABELNO)); \
} while (0)
#endif