mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 08:21:25 +00:00
General stack info handling improvements
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@6466 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
2e21575872
commit
2fe1953386
10 changed files with 59 additions and 9 deletions
|
@ -80,6 +80,10 @@ typedef struct alpha_args {
|
|||
{ \
|
||||
(TYPE)++; \
|
||||
} \
|
||||
if (*(TYPE) == '-') \
|
||||
{ \
|
||||
(TYPE)++; \
|
||||
} \
|
||||
while (isdigit(*(TYPE))) \
|
||||
{ \
|
||||
(TYPE)++; \
|
||||
|
|
|
@ -33,6 +33,10 @@
|
|||
{ \
|
||||
(TYPE)++; \
|
||||
} \
|
||||
if (*(TYPE) == '-') \
|
||||
{ \
|
||||
(TYPE)++; \
|
||||
} \
|
||||
while (isdigit(*(TYPE))) \
|
||||
{ \
|
||||
(TYPE)++; \
|
||||
|
|
|
@ -30,6 +30,7 @@
|
|||
(TYPE) = objc_skip_typespec(type); \
|
||||
sprintf((DEST), "%.*s%d", (TYPE)-type, type, (CUM)); \
|
||||
if (*(TYPE) == '+') (TYPE)++; \
|
||||
if (*(TYPE) == '-') (TYPE)++; \
|
||||
while (isdigit(*(TYPE))) \
|
||||
{ \
|
||||
(TYPE)++; \
|
||||
|
|
|
@ -110,6 +110,10 @@ typedef struct rs6000_args
|
|||
{ \
|
||||
(TYPE)++; \
|
||||
} \
|
||||
if (*(TYPE) == '-') \
|
||||
{ \
|
||||
(TYPE)++; \
|
||||
} \
|
||||
while (isdigit(*(TYPE))) \
|
||||
{ \
|
||||
(TYPE)++; \
|
||||
|
|
|
@ -65,6 +65,10 @@ struct sparc_args {
|
|||
{ \
|
||||
(TYPE)++; \
|
||||
} \
|
||||
if (*(TYPE) == '-') \
|
||||
{ \
|
||||
(TYPE)++; \
|
||||
} \
|
||||
while (isdigit(*(TYPE))) \
|
||||
{ \
|
||||
(TYPE)++; \
|
||||
|
|
|
@ -38,6 +38,10 @@
|
|||
{ \
|
||||
(TYPE)++; \
|
||||
} \
|
||||
if (*(TYPE) == '-') \
|
||||
{ \
|
||||
(TYPE)++; \
|
||||
} \
|
||||
while (isdigit(*(TYPE))) \
|
||||
{ \
|
||||
(TYPE)++; \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue