diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2007-10-12 15:34:45 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2007-10-12 15:34:45 +0000 |
commit | 82585c726542fe34a6e3108ce281759f4de08d57 (patch) | |
tree | aa454eab9abbf4222f860519cd0d016f177a7f98 /gdb/block.h | |
parent | 8f536afe352ac7b4c8135e2085d192c46ea45d0a (diff) | |
download | gdb-82585c726542fe34a6e3108ce281759f4de08d57.zip gdb-82585c726542fe34a6e3108ce281759f4de08d57.tar.gz gdb-82585c726542fe34a6e3108ce281759f4de08d57.tar.bz2 |
* block.h (struct block): Remove "gcc_compile_flag" member.
(BLOCK_GCC_COMPILED): Remove.
* block.c (allocate_block): Do not clear BLOCK_GCC_COMPILED.
* buildsym.c (finish_block): Do not set it.
* symmisc.c (dump_symtab_1): Do not dump it.
* value.h (using_struct_return): Remove "gcc_p" argument.
* value.c (using_struct_return): Likewise.
* eval.c (evaluate_subexp_standard): Adapt callers.
* infcall.c (call_function_by_hand): Likewise.
* stack.c (return_command): Likewise.
* sparc-tdep.c (sparc32_push_dummy_code): Likewise.
* gdbarch.sh (push_dummy_code): Remove "using_gcc" parameter.
* gdbarch.c, gdbarch.h: Regenerate.
* cris-tdep.c (cris_push_dummy_code): Adapt prototype.
* hppa-hpux-tdep.c (hppa_hpux_push_dummy_code): Likewise.
* sparc-tdep.c (sparc32_push_dummy_code): Likewise.
* infcall.c (generic_push_dummy_code, push_dummy_code): Likewise.
(push_dummy_code, call_function_by_hand): Adapt callers.
Diffstat (limited to 'gdb/block.h')
-rw-r--r-- | gdb/block.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/gdb/block.h b/gdb/block.h index 152a4fc..0b69f87 100644 --- a/gdb/block.h +++ b/gdb/block.h @@ -95,25 +95,12 @@ struct block cplus_specific; } language_specific; - - /* Version of GCC used to compile the function corresponding - to this block, or 0 if not compiled with GCC. When possible, - GCC should be compatible with the native compiler, or if that - is not feasible, the differences should be fixed during symbol - reading. As of 16 Apr 93, this flag is never used to distinguish - between gcc2 and the native compiler. - - If there is no function corresponding to this block, this meaning - of this flag is undefined. */ - - unsigned char gcc_compile_flag; }; #define BLOCK_START(bl) (bl)->startaddr #define BLOCK_END(bl) (bl)->endaddr #define BLOCK_FUNCTION(bl) (bl)->function #define BLOCK_SUPERBLOCK(bl) (bl)->superblock -#define BLOCK_GCC_COMPILED(bl) (bl)->gcc_compile_flag #define BLOCK_DICT(bl) (bl)->dict #define BLOCK_NAMESPACE(bl) (bl)->language_specific.cplus_specific.namespace |