include/
authorgdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 2 Aug 2004 16:45:52 +0000 (16:45 +0000)
committergdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 2 Aug 2004 16:45:52 +0000 (16:45 +0000)
        * libiberty.h (XDELETE, XDELETEVEC, XRESIZEVEC): Remove any
        const-qualification before disposal.

gcc/
        * vec.h (DEF_VEC_P): Add proper cast to uses of vec_o_reserve and
        vec_p_reserve.
        * langhooks.h (lang_hooks::builtin_function): Rename parameter
        from "class" to "bt_class".

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85441 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/langhooks.h
gcc/vec.h
include/ChangeLog
include/libiberty.h

index 7dc0a5b..23750e3 100644 (file)
@@ -1,3 +1,10 @@
+2004-08-02  Gabriel Dos Reis  <gdr@integrable-solutions.net>
+
+       * vec.h (DEF_VEC_P): Add proper cast to uses of vec_o_reserve and
+       vec_p_reserve. 
+       * langhooks.h (lang_hooks::builtin_function): Rename parameter
+       from "class" to "bt_class".
+
 2004-08-02  Paul Brook  <paul@codesourcery.com>
 
        PR rtl-optimization/15068
index 04dc114..108b451 100644 (file)
@@ -411,7 +411,7 @@ struct lang_hooks
      the name to be called if we can't opencode the function.  If
      ATTRS is nonzero, use that for the function's attribute list.  */
   tree (*builtin_function) (const char *name, tree type, int function_code,
-                           enum built_in_class class,
+                           enum built_in_class bt_class,
                            const char *library_name, tree attrs);
 
   /* Whenever you add entries here, make sure you adjust langhooks-def.h
index 885e547..33d9bf6 100644 (file)
--- a/gcc/vec.h
+++ b/gcc/vec.h
@@ -390,7 +390,7 @@ static inline int VEC_OP (TDEF,iterate)                                       \
 static inline VEC (TDEF) *VEC_OP (TDEF,alloc)                            \
      (int alloc_ MEM_STAT_DECL)                                                  \
 {                                                                        \
-  return vec_p_reserve (NULL, alloc_ - !alloc_ PASS_MEM_STAT);           \
+  return (VEC (TDEF) *) vec_p_reserve (NULL, alloc_ - !alloc_ PASS_MEM_STAT);\
 }                                                                        \
                                                                          \
 static inline size_t VEC_OP (TDEF,embedded_size)                         \
@@ -419,7 +419,7 @@ static inline int VEC_OP (TDEF,reserve)                                       \
   int extend = VEC_OP (TDEF,space) (*vec_, alloc_);                      \
                                                                          \
   if (extend)                                                            \
-    *vec_ = vec_p_reserve (*vec_, alloc_ PASS_MEM_STAT);                 \
+    *vec_ = (VEC (TDEF) *) vec_p_reserve (*vec_, alloc_ PASS_MEM_STAT);   \
                                                                          \
   return extend;                                                         \
 }                                                                        \
@@ -583,9 +583,9 @@ static inline int VEC_OP (TDEF,iterate)                                       \
 static inline VEC (TDEF) *VEC_OP (TDEF,alloc)                            \
      (int alloc_ MEM_STAT_DECL)                                                  \
 {                                                                        \
-  return vec_o_reserve (NULL, alloc_ - !alloc_,                                  \
-                       offsetof (VEC(TDEF),vec), sizeof (TDEF)           \
-                       PASS_MEM_STAT);                                   \
+  return (VEC (TDEF) *) vec_o_reserve (NULL, alloc_ - !alloc_,           \
+                                       offsetof (VEC(TDEF),vec), sizeof (TDEF)\
+                                       PASS_MEM_STAT);                   \
 }                                                                        \
                                                                          \
 static inline size_t VEC_OP (TDEF,embedded_size)                         \
@@ -614,7 +614,7 @@ static inline int VEC_OP (TDEF,reserve)                                       \
   int extend = VEC_OP (TDEF,space) (*vec_, alloc_);                      \
                                                                          \
   if (extend)                                                            \
-    *vec_ = vec_o_reserve (*vec_, alloc_,                                \
+    *vec_ = (VEC (TDEF) *) vec_o_reserve (*vec_, alloc_,                 \
                           offsetof (VEC(TDEF),vec), sizeof (TDEF)        \
                           PASS_MEM_STAT);                                \
                                                                          \
index e62b362..6fabb45 100644 (file)
@@ -1,3 +1,8 @@
+2004-08-02  Gabriel Dos Reis  <gdr@integrable-solutions.net>
+
+       * libiberty.h (XDELETE, XDELETEVEC, XRESIZEVEC): Remove any
+       const-qualification before disposal.
+
 2004-07-24  Bernardo Innocenti  <bernie@develer.com>
 
        * ansidecl.h (ARG_UNUSED): New Macro.
index 68eeeae..a90b4dd 100644 (file)
@@ -261,14 +261,14 @@ extern double physmem_available PARAMS ((void));
 
 #define XNEW(T)                        ((T *) xmalloc (sizeof (T)))
 #define XCNEW(T)               ((T *) xcalloc (1, sizeof (T)))
-#define XDELETE(P)             free ((P))
+#define XDELETE(P)             free ((void*) (P))
 
 /* Array allocators.  */
 
 #define XNEWVEC(T, N)          ((T *) xmalloc (sizeof (T) * (N)))
 #define XCNEWVEC(T, N)         ((T *) xcalloc ((N), sizeof (T)))
-#define XRESIZEVEC(T, P, N)    ((T *) xrealloc ((P), sizeof (T) * (N)))
-#define XDELETEVEC(P)          free ((P))
+#define XRESIZEVEC(T, P, N)    ((T *) xrealloc ((void *) (P), sizeof (T) * (N)))
+#define XDELETEVEC(P)          free ((void*) (P))
 
 /* Allocators for variable-sized structures and raw buffers.  */