diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-07-19 23:31:09 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-07-19 23:31:09 +0000 |
commit | 88bc5cafd0334b4f07a5ffd8587ed5023f6e2b01 (patch) | |
tree | 26fb8790c879f3120810b6e2729da28afc2685b5 /gdb/config/pa | |
parent | 1cd080b5204d528a00c0f2725460eb769f958a6a (diff) | |
download | gdb-88bc5cafd0334b4f07a5ffd8587ed5023f6e2b01.zip gdb-88bc5cafd0334b4f07a5ffd8587ed5023f6e2b01.tar.gz gdb-88bc5cafd0334b4f07a5ffd8587ed5023f6e2b01.tar.bz2 |
* printcmd.c, config/pa/xm-pa.h, config/alpha/xm-alpha.h: Make it so
arg_bytes field of makeva_list is always aligned.
* config/pa/xm-pa.h: Make arglist_address a char *.
Diffstat (limited to 'gdb/config/pa')
-rw-r--r-- | gdb/config/pa/xm-pa.h | 19 |
1 files changed, 6 insertions, 13 deletions
diff --git a/gdb/config/pa/xm-pa.h b/gdb/config/pa/xm-pa.h index 831be59..4b12910 100644 --- a/gdb/config/pa/xm-pa.h +++ b/gdb/config/pa/xm-pa.h @@ -1,10 +1,7 @@ /* Definitions for all PA machines. */ -#define MAKEVA_EXTRA_INFO int arglist_address; - #define MAKEVA_START(list) \ - list->argindex = list->nargs * list->max_arg_size; \ - list->arglist_address = 0; + list->argindex = list->nargs * list->max_arg_size; #define MAKEVA_ARG(list, argaddr, argsize) \ { \ @@ -18,17 +15,13 @@ else if (argsize <= 8) \ rounded_argsize = 8; \ list->argindex -= rounded_argsize; \ - while ((int)(&list->arg_bytes[list->argindex]) % rounded_argsize) \ + while ((int)(&list->aligner.arg_bytes[list->argindex]) % rounded_argsize) \ list->argindex--; \ - /* arglist_address is used to store the address of the first arguent. */ \ - if (list->arglist_address == 0) \ - list->arglist_address = &list->arg_bytes[list->argindex] \ - + rounded_argsize; \ - memcpy (&list->arg_bytes[list->argindex], argaddr, argsize); \ + memcpy (&list->aligner.arg_bytes[list->argindex], argaddr, argsize); \ } /* The address of the arglist is the address right after the args - (which is what you'd expect). This address is stored in the arglist_address - field. */ + (which is what you'd expect). */ #define MAKEVA_END(list) \ - return (va_list) list->arglist_address; + return (va_list) (list->aligner.arg_bytes \ + + list->nargs * list->max_arg_size) |