diff options
author | John Gilmore <gnu@cygnus> | 1993-02-16 05:16:55 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1993-02-16 05:16:55 +0000 |
commit | 7c622b41052032c7d28eb261319e85f9af9d12d0 (patch) | |
tree | 09026c0060f20c621bb9234ca3434f1a64ad5f2c /gdb/xcoffread.c | |
parent | 3039e8eeaf3fbea75cd866bbd5b13f458f6f6584 (diff) | |
download | gdb-7c622b41052032c7d28eb261319e85f9af9d12d0.zip gdb-7c622b41052032c7d28eb261319e85f9af9d12d0.tar.gz gdb-7c622b41052032c7d28eb261319e85f9af9d12d0.tar.bz2 |
* remote.c: Improve error recovery. Allow user to break out
of initial connection attempt with INTERRUPT. Treat a timeout
while waiting for remote packet like a retry, unless the remote
side is actively running user code. Fix a few long printf_filtered's.
* xcoffread.c (read_xcoff_symtab): Don't use null symbol name for
trampoline symbols.
* buildsym.c (start_subfile): Allow null file name.
Diffstat (limited to 'gdb/xcoffread.c')
-rw-r--r-- | gdb/xcoffread.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/xcoffread.c b/gdb/xcoffread.c index f7fc30d..147b45f 100644 --- a/gdb/xcoffread.c +++ b/gdb/xcoffread.c @@ -1324,7 +1324,8 @@ function_entry_point: /* Recording this entry is necessary. Single stepping relies on this vector to get an idea about function address boundaries. */ - prim_record_minimal_symbol (0, cs->c_value, mst_unknown); + prim_record_minimal_symbol ("<trampoline>", cs->c_value, + mst_unknown); #else /* record trampoline code entries as mst_unknown symbol. When we |