diff options
author | Mark Alexander <marka@cygnus> | 1997-09-15 21:06:16 +0000 |
---|---|---|
committer | Mark Alexander <marka@cygnus> | 1997-09-15 21:06:16 +0000 |
commit | 899c402166e46e5b16b3e668d2b947b12a682136 (patch) | |
tree | 6005600a8fef2ac571d224536ecfe7640b616eb5 /gdb/.Sanitize | |
parent | a611b1c2fd7c9974146134a1eeaf41c04c743386 (diff) | |
download | gdb-899c402166e46e5b16b3e668d2b947b12a682136.zip gdb-899c402166e46e5b16b3e668d2b947b12a682136.tar.gz gdb-899c402166e46e5b16b3e668d2b947b12a682136.tar.bz2 |
* dbxread.c (MSYMBOL_SIZE): New macro.
(end_psymtab): Use MSYMBOL_SIZE to extract size from minimal symbol.
* elfread.c (elf_symtab_read): If ELF symbol is "special",
such as a MIPS16 function, mark minimal symbol as special too.
* mips-tdep.c (pc_is_mips16): New function to check whether
a function is MIPS16 by looking at the minimal symbol. Use
pc_is_mips16 throughout instead of IS_MIPS16_ADDR macro.
* config/mips/tm-mips.h (SYMBOL_IS_SPECIAL, MAKE_MSYMBOL_SPECIAL,
MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): New functions for setting/testing
"special" MIPS16 bit in ELF and minimal symbols.
* mdebugread.c (parse_partial_symbols): Don't construct a partial
symbol table for a file that already has one.
start-sanitize-tx19
* configure.tgt: Support TX19.
* config/mips/tm-tx19.h, config/mips/tm-tx19l.h, config/mips/tx19.mt,
config/mips/tx19l.mt: New files for TX19.
end-sanitize-tx19
Diffstat (limited to 'gdb/.Sanitize')
-rw-r--r-- | gdb/.Sanitize | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gdb/.Sanitize b/gdb/.Sanitize index 68f7ca6..0f98cb8 100644 --- a/gdb/.Sanitize +++ b/gdb/.Sanitize @@ -642,6 +642,33 @@ else done fi +if ( echo $* | grep keep\-tx19 > /dev/null ) ; then + for i in * ; do + if test ! -d $i && (grep sanitize-tx19 $i > /dev/null) ; then + if [ -n "${verbose}" ] ; then + echo Keeping tx19 stuff in $i + fi + fi + done +else + for i in * ; do + if test ! -d $i && (grep sanitize-tx19 $i > /dev/null) ; then + if [ -n "${verbose}" ] ; then + echo Removing traces of \"tx19\" from $i... + fi + cp $i new + sed '/start\-sanitize\-tx19/,/end-\sanitize\-tx19/d' < $i > new + if [ -n "${safe}" -a ! -f .Recover/$i ] ; then + if [ -n "${verbose}" ] ; then + echo Caching $i in .Recover... + fi + mv $i .Recover + fi + mv new $i + fi + done +fi + if ( echo $* | grep keep\-tx39 > /dev/null ) ; then for i in * ; do if test ! -d $i && (grep sanitize-tx39 $i > /dev/null) ; then |