diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-07-29 17:14:38 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-07-29 17:14:38 +0000 |
commit | 6e35b037df55bd435410c5965c94e0ff7ca460d4 (patch) | |
tree | 9e35fe0211377548399138338f9b906536242f81 /gdb/hppa-tdep.c | |
parent | 4af6d50262a55652d7ce7c09f8b7f897bb7ae0e7 (diff) | |
download | gdb-6e35b037df55bd435410c5965c94e0ff7ca460d4.zip gdb-6e35b037df55bd435410c5965c94e0ff7ca460d4.tar.gz gdb-6e35b037df55bd435410c5965c94e0ff7ca460d4.tar.bz2 |
* hppa-tdep.c (pc_in_linker_stub): Fix unclosed comments.
Diffstat (limited to 'gdb/hppa-tdep.c')
-rw-r--r-- | gdb/hppa-tdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/hppa-tdep.c b/gdb/hppa-tdep.c index 90dfa00..4bad651 100644 --- a/gdb/hppa-tdep.c +++ b/gdb/hppa-tdep.c @@ -325,7 +325,7 @@ pc_in_linker_stub (pc) from the given PC, then backward. */ for (i = 0; i < 4; i++) { - /* If we hit something with an unwind, stop searching this direction. + /* If we hit something with an unwind, stop searching this direction. */ if (find_unwind_entry (pc + i * 4) != 0) break; @@ -347,7 +347,7 @@ pc_in_linker_stub (pc) /* Now look backward. */ for (i = 0; i < 4; i++) { - /* If we hit something with an unwind, stop searching this direction. + /* If we hit something with an unwind, stop searching this direction. */ if (find_unwind_entry (pc - i * 4) != 0) break; |