diff options
author | Christopher Faylor <me+cygwin@cgf.cx> | 2001-10-12 04:32:16 +0000 |
---|---|---|
committer | Christopher Faylor <me+cygwin@cgf.cx> | 2001-10-12 04:32:16 +0000 |
commit | 02e423b9b296edcf2fc50161c361062727a3263d (patch) | |
tree | 99556f32d94f7c0e5da67b624693710ab77b756a /gdb/config | |
parent | 1b15f1fad9b1efdc6b2c6057fd01ea951dc5abe6 (diff) | |
download | gdb-02e423b9b296edcf2fc50161c361062727a3263d.zip gdb-02e423b9b296edcf2fc50161c361062727a3263d.tar.gz gdb-02e423b9b296edcf2fc50161c361062727a3263d.tar.bz2 |
* config/i386/tm-cygwin.h: include tm-i386.h instead of tm-i386v.h. This fixes
errors in "long long" handling for 'finish' and 'return' commands.
* win32-nat.c (safe_symbol_file_add_stub): Avoid adding a shared library if it
has already been loaded.
(safe_symbol_file_add_cleanup): Don't mess with stderr or we won't see any
error messages.
(safe_symbol_file_add): Ditto.
(solib_symbols_add): Make static. Accept 'from_tty' parameter. Pass it to
safe_symbol_file_add.
(core_dll_symbols_add): Accomodate extra solib_symbols_add parameter.
(child_solib_add): Ditto.
* win32-nat.c (handle_exception): Don't print "first chance" exceptions.
(get_child_debug_event): Continue from exceptions if !handle_exception.
Diffstat (limited to 'gdb/config')
-rw-r--r-- | gdb/config/i386/tm-cygwin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/config/i386/tm-cygwin.h b/gdb/config/i386/tm-cygwin.h index 287b8e0..b0cb572 100644 --- a/gdb/config/i386/tm-cygwin.h +++ b/gdb/config/i386/tm-cygwin.h @@ -23,7 +23,7 @@ #undef HAVE_SSE_REGS /* FIXME! win32-nat.c needs to support XMMi registers */ #define HAVE_I387_REGS -#include "i386/tm-i386v.h" +#include "i386/tm-i386.h" #if 0 #define IN_SOLIB_CALL_TRAMPOLINE(pc, name) skip_trampoline_code (pc, name) |