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/alpha/xm-alpha.h | |
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/alpha/xm-alpha.h')
-rw-r--r-- | gdb/config/alpha/xm-alpha.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/config/alpha/xm-alpha.h b/gdb/config/alpha/xm-alpha.h index e2673e6..0fa5199 100644 --- a/gdb/config/alpha/xm-alpha.h +++ b/gdb/config/alpha/xm-alpha.h @@ -43,7 +43,7 @@ extern void free PARAMS ((void *)); #define MAKEVA_END(list) \ { \ va_list ret; \ - ret.a0 = (char *)(list)->arg_bytes; \ + ret.a0 = (char *)(list)->aligner.arg_bytes; \ ret.offset = (list)->argindex; \ return ret; \ } |