gdb-3.1
This commit is contained in:
parent
bb7592f010
commit
e91b87a368
150 changed files with 54576 additions and 10225 deletions
|
@ -290,9 +290,10 @@ int obstack_chunk_size (struct obstack *obstack);
|
|||
|
||||
#define obstack_blank_fast(h,n) ((h)->next_free += (n))
|
||||
|
||||
#ifdef __GNUC__
|
||||
#if defined (__GNUC__) && defined (__STDC__)
|
||||
|
||||
/* For GNU C we can define these macros to compute all args only once
|
||||
/* For GNU C, if not -traditional,
|
||||
we can define these macros to compute all args only once
|
||||
without using a global variable.
|
||||
Also, we can avoid using the `temp' slot, to make faster code. */
|
||||
|
||||
|
@ -372,7 +373,7 @@ int obstack_chunk_size (struct obstack *obstack);
|
|||
__o->next_free = __o->object_base = __obj; \
|
||||
else (obstack_free) (__o, __obj); })
|
||||
|
||||
#else /* not __GNUC__ */
|
||||
#else /* not __GNUC__ or not __STDC__ */
|
||||
|
||||
/* The non-GNU macros copy the obstack-pointer into this global variable
|
||||
to avoid multiple evaluation. */
|
||||
|
@ -447,7 +448,7 @@ extern struct obstack *_obstack;
|
|||
: (int) _obstack_free ((h), (h)->temp + (char *) (h)->chunk)))
|
||||
#endif
|
||||
|
||||
#endif /* not __GNUC__ */
|
||||
#endif /* not __GNUC__ or not __STDC__ */
|
||||
|
||||
#endif /* not __OBSTACKS__ */
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue