(enum reg): Rearrange registers, remove 'ccfg' and 'pc'.
[deliverable/binutils-gdb.git] / include / obstack.h
index 5496ff24071a6ccf87eaaf319eb8cf08387d8a49..007853e805d2115478ba40d8fbe900486d9049f9 100644 (file)
@@ -494,9 +494,9 @@ __extension__                                                               \
 # define obstack_free(OBSTACK, OBJ)                                    \
 __extension__                                                          \
 ({ struct obstack *__o = (OBSTACK);                                    \
-   void *__obj = (OBJ);                                                        \
+   void *__obj = (void *) (OBJ);                                       \
    if (__obj > (void *)__o->chunk && __obj < (void *)__o->chunk_limit)  \
-     __o->next_free = __o->object_base = __obj;                                \
+     __o->next_free = __o->object_base = (char *) __obj;               \
    else (obstack_free) (__o, __obj); })
 \f
 #else /* not __GNUC__ or not __STDC__ */
This page took 0.023468 seconds and 4 git commands to generate.