summaryrefslogtreecommitdiff
path: root/gcc/cccp.c
diff options
context:
space:
mode:
authorghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>1999-03-19 12:43:55 +0000
committerghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>1999-03-19 12:43:55 +0000
commitca7f6516755052fa0bf535306ef1e177fdad1199 (patch)
tree44ab1abac4ea78664a7aac624e55999489833429 /gcc/cccp.c
parent266fc98c3d039b846a6fec8bf5b879954f047daf (diff)
downloadgcc-ca7f6516755052fa0bf535306ef1e177fdad1199.tar.gz
Warning fixes:
* cccp.c (create_definition): Cast to U_CHAR* when assigning to one. * cppfiles.c (read_and_prescan): Likewise. Start a #define in column 0. * cpplib.c (cpp_define): Cast to U_CHAR* when assigning to one. (cpp_push_buffer): Likewise for cpp_buffer*. (do_include): Change the type of `fbeg' and `fend' to unsigned char*. (do_endif): Cast to char* when assigning to one. (do_assert): Likewise. (do_unassert): Likewise. (cpp_read_check_assertion): Change the type of `name' to U_CHAR*. Don't do unnecessary cast to char* anymore. * genrecog.c (make_insn_sequence): Cast to char** when assigning to one. Cast the first argument of bzero to PTR. * loop.c (strength_reduce): Remove unused variable `note'. * reload1.c (new_insn_chain): Cast to struct insn_chain* when assigning to one. * rtl.c (copy_rtx): Use memcpy instead of bcopy. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@25860 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cccp.c')
-rw-r--r--gcc/cccp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cccp.c b/gcc/cccp.c
index 9fa3d1f271e..a849aabd6b3 100644
--- a/gcc/cccp.c
+++ b/gcc/cccp.c
@@ -5861,7 +5861,7 @@ create_definition (buf, limit, op)
if (bp == temp->name && rest_args == 1)
{
/* This is the ISO C 9x style. */
- temp->name = va_args_name;
+ temp->name = (U_CHAR *) va_args_name;
temp->length = VA_ARGS_NAME_LENGTH;
}
else