diff options
author | Jason Thorpe <thorpej@netbsd.org> | 2002-01-20 00:23:10 +0000 |
---|---|---|
committer | Jason Thorpe <thorpej@netbsd.org> | 2002-01-20 00:23:10 +0000 |
commit | ee1f65f0e30d3346efaf28c81ba491e5403ec708 (patch) | |
tree | 2849ef6022ab90d9ca5bce5853b746eceb83bd4c /gdb/alpha-tdep.c | |
parent | 98081e55d97de9b28768be80794d3f117ac4dd1e (diff) | |
download | gdb-ee1f65f0e30d3346efaf28c81ba491e5403ec708.zip gdb-ee1f65f0e30d3346efaf28c81ba491e5403ec708.tar.gz gdb-ee1f65f0e30d3346efaf28c81ba491e5403ec708.tar.bz2 |
* alpha-tdep.c (alpha_call_dummy_words): New.
* config/alpha/tm-alpha.h (CALL_DUMMY): Remove.
(CALL_DUMMY_P): Define.
(CALL_DUMMY_WORDS): Define.
(SIZEOF_CALL_DUMMY_WORDS): Define.
Diffstat (limited to 'gdb/alpha-tdep.c')
-rw-r--r-- | gdb/alpha-tdep.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/alpha-tdep.c b/gdb/alpha-tdep.c index a717e10..b894fbd 100644 --- a/gdb/alpha-tdep.c +++ b/gdb/alpha-tdep.c @@ -1505,6 +1505,11 @@ alpha_fix_call_dummy (char *dummy, CORE_ADDR pc, CORE_ADDR fun, int nargs, write_register (T12_REGNUM, fun); } +/* On the Alpha, the call dummy code is nevery copied to user space + (see alpha_fix_call_dummy() above). The contents of this do not + matter. */ +LONGEST alpha_call_dummy_words[] = { 0 }; + int alpha_use_struct_convention (int gcc_p, struct type *type) { |