old-cross-binutils/gdb/testsuite/gdb.base
Daniel Jacobowitz edb3359dff gdb/
* NEWS: Document inlined function support.
	* Makefile.in (SFILES): Add inline-frame.c.
	(COMMON_OBS): Add inline-frame.o.
	* block.c (contained_in): Rewrite to use lexical nesting.
	(block_linkage_function): Skip inlined function blocks.
	(block_inlined_p): New.
	* block.h (struct block): Update comment.
	(block_inlined_p): New prototype.
	* blockframe.c (get_frame_block): Handle inlined functions.
	(get_frame_function): Do not use block_linkage_function.
	(block_innermost_frame): Use get_frame_block and contained_in.
	* breakpoint.c (watchpoint_check): Remove extra reinit_frame_cache.
	Skip over inlined functions.  Simplify epilogue check.
	(bpstat_check_breakpoint_conditions): Use get_stack_frame_id.
	Update comments.
	(set_momentary_breakpoint): Only accept non-inlined frames.
	(watch_command_1): Use frame_unwind_caller_pc and
	frame_unwind_caller_id instead of get_prev_frame.
	(until_break_command): Likewise.  Use get_stack_frame_id.
	* buildsym.c (end_symtab): Set SYMBOL_SYMTAB for block functions.
	* dwarf2loc.c (dwarf_expr_frame_base): Use block_linkage_function.
	* dwarf2read.c (process_die): Handle DW_TAG_inlined_subroutine.
	(read_func_scope, new_symbol): Likewise.  Handle arguments specially
	for inlined functions without call site information.
	(inherit_abstract_dies): Allow tag mismatch for inlined subroutines.
	(die_specification): Treat DW_AT_abstract_origin as a specification.
	(read_type_die): Handle DW_TAG_inlined_subroutine.
	* frame-unwind.c (frame_unwind_init): Add inline_frame_unwind.
	* frame.c (fprint_frame_id): Print inline depth.
	(fprint_frame_type): Handle INLINE_FRAME and SENTINEL_FRAME.
	(skip_inlined_frames, get_stack_frame_id): New.
	(frame_unwind_caller_id): Use skip_inlined_frames.
	(frame_id_inlined_p): New.
	(frame_id_eq): Make the logic match the comments.  Add inline_depth
	check.
	(frame_id_inner): Handle inlined functions.
	(frame_unwind_pc): New function, copied from frame_unwind_caller_pc.
	(frame_unwind_caller_pc): Use skip_inlined_frames and frame_unwind_pc.
	(get_prev_frame_1): Check for inline frames.  Split out frame
	allocation to get_prev_frame_raw.
	(get_prev_frame_raw): New function.
	(get_prev_frame): Handle inline frames.
	(get_frame_pc): Use frame_unwind_pc.
	(get_frame_address_in_block): Skip inlined frames on both sides.
	(pc_notcurrent): Delete.
	(find_frame_sal): Rewrite to handle inline call sites.  Use
	get_frame_address_in_block.
	(deprecated_update_frame_pc_hack): Make static.
	* frame.h: Update comments.
	(struct frame_id): Add inline_depth.
	(enum frame_type): Add INLINE_FRAME.
	(frame_id_inlined_p, get_stack_frame_id): New prototypes.
	* gdbthread.h (struct thread_info): Add step_stack_frame_id field.
	* infcmd.c (set_step_frame): New function.
	(step_once): Use set_step_frame.  Handle inlined functions.
	(until_next_command): Use set_step_frame.
	(finish_backward), finish_forward): Use get_stack_frame_id.
	(finish_command): Support inlined functions.
	* inferior.h (set_step_info): New prototype.
	* infrun.c (RESUME_ALL): Use minus_one_ptid.
	(clear_proceed_status): Clear step_stack_frame_id.
	(init_wait_for_inferior): Call clear_inline_frame_state.
	(init_execution_control_state): Make static.
	(set_step_info): New function.
	(init_thread_stepping_state): Do not set the symtab or line here.
	(stepped_in_from): New function.
	(handle_inferior_event): Handle inlined functions.  Use set_step_info.
	(insert_step_resume_breakpoint_at_frame): Use get_stack_frame_id.
	(struct inferior_status): Add step_stack_frame_id.
	(save_inferior_status, restore_inferior_status): Save and restore
	step_stack_frame_id.
	* inline-frame.c, inline-frame.h: New files.
	* minsyms.c (prim_record_minimal_symbol_and_info): Use XCALLOC.
	* regcache.c (regcache_write_pc): Call reinit_frame_cache.
	* s390-tdep.c (s390_prologue_frame_unwind_cache): Handle INLINE_FRAME.
	* stack.c (frame_show_address): New.
	(print_frame_info, print_frame): Use it.
	(find_frame_funname): Use get_frame_function.  Handle inlined blocks.
	(frame_info): Mark inlined functions.
	(backtrace_command_1): Use get_current_user_frame.
	(print_frame_local_vars, print_frame_label_vars): Update comments.
	(return_command): Refuse inlined functions.
	* symtab.c (lookup_symbol_aux_local): Stop at inlined function
	boundaries.
	(find_function_start_sal): Avoid inlined functions.
	(completion_list_add_fields): New function.
	(default_make_symbol_completion_list): Use it.  Use block_static_block
	and block_global_block.  Check for inlined functions.
	(skip_prologue_using_sal): Avoid line number comparison across
	inlining.
	* symtab.h (struct symbol): Add is_inlined.
	(SYMBOL_INLINED): New.
	* target.c (target_resume): Call clear_inline_frame_state.
	* valops.c (value_of_variable): Check block_inlined_p.

	gdb/doc/
	* gdb.texinfo (Debugging Optimized Code): New chapter.
	(Compiling for Debugging): Reference it.  Move some
	text to the new section.

	gdb/testsuite/
	* gdb.base/break.exp: Add an XFAIL for gcc/36748.
	* gdb.cp/annota2.exp: Accept frames-invalid in more places.
	* gdb.opt/Makefile.in (EXECUTABLES): Update.
	* gdb.opt/clobbered-registers-O2.exp: Update to GPL v3.
	* gdb.opt/inline-bt.c, gdb.opt/inline-bt.exp,
	gdb.opt/inline-cmds.c, gdb.opt/inline-cmds.exp,
	gdb.opt/inline-locals.c, gdb.opt/inline-locals.exp,
	gdb.opt/inline-markers.c: New files.
	* lib/gdb.exp (skip_inline_frame_tests): New function.
	(skip_inline_var_tests): New function.
2009-06-28 00:20:24 +00:00
..
a2-run.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
advance.c
advance.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
all-bin.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
all-types.c
annota1.c
annota1.exp ChangeLog: 2009-06-17 18:32:40 +00:00
annota3.c
annota3.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
args.c
args.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
arithmet.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
arrayidx.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
arrayidx.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
assign.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
async.c
async.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
attach.c
attach.exp * gdb.base/attach.exp: Re-enable for spu*-*-* targets. 2009-04-03 14:37:04 +00:00
attach2.c
auxv.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
auxv.exp Fix a racy FAIL. 2009-03-22 21:11:45 +00:00
average.c
bang.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
bar.c
baz.c
bfp-test.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
bfp-test.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
bigcore.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
bigcore.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
bitfields.c
bitfields.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
bitfields2.c
bitfields2.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
bitops.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
branches.c
break-always.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
break-always.exp 2009-05-29 Michael Snyder <msnyder@vmware.com> 2009-06-01 19:31:52 +00:00
break.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
break.exp gdb/ 2009-06-28 00:20:24 +00:00
break1.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
breakpoint-shadow.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
breakpoint-shadow.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
call-ar-st.c
call-ar-st.exp * gdb.base/funcargs.exp: Set print frame-arguments to "all". 2009-04-01 22:08:03 +00:00
call-rt-st.c
call-rt-st.exp gdb: 2009-03-20 23:04:40 +00:00
call-sc.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
call-sc.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
call-signal-resume.exp * dummy-frame.c (dummy_frame): Replace regcache member with 2009-01-19 19:05:01 +00:00
call-signals.c * dummy-frame.c (dummy_frame): Replace regcache member with 2009-01-19 19:05:01 +00:00
call-strs.c
call-strs.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
callexit.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
callexit.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
callfuncs.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
callfuncs.exp Fix a racy FAIL. 2009-03-22 21:11:45 +00:00
charset.c gdb 2009-06-23 16:26:05 +00:00
charset.exp gdb 2009-06-23 16:26:05 +00:00
checkpoint.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
checkpoint.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
chng-syms.c
chng-syms.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
code-expr.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
commands.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
completion.exp * gdb.base/completion.exp: Add a test for directory completion. 2009-03-25 10:52:22 +00:00
complex.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
complex.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
cond-expr.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
condbreak.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
consecutive.c
consecutive.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
constvars.c
constvars.exp gdb: 2009-03-20 23:04:40 +00:00
corefile.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
coremaker.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
coremaker2.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
cursal.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
cursal.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
cvexpr.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
cvexpr.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
d10v.ld
d10vovly.c
dbx.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
default.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
define.exp * NEWS: Document "define" for prefixed commands. 2009-01-14 20:40:09 +00:00
del.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
del.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
detach.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
dfp-exprs.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
dfp-test.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
dfp-test.exp * gdb.base/remote.exp (get_sizeof): Remove. 2009-02-13 16:13:47 +00:00
display.c
display.exp gdb 2009-05-28 01:05:14 +00:00
dump.c
dump.exp ChangeLog: 2009-06-17 18:49:37 +00:00
echo.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
ena-dis-br.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
ending-run.c
ending-run.exp gdb 2009-03-26 23:30:12 +00:00
environ.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
eval-skip.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
exe-lock.exp * gdb.base/exe-lock.exp (binfile): Add $EXEEXT suffix to fix 2009-06-25 22:40:23 +00:00
execd-prog.c
expand-psymtabs.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
expand-psymtabs.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
exprs.c
exprs.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
fileio.c
fileio.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
find.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
find.exp * gdb.base/find.exp: Set newline variable 2009-01-27 08:22:23 +00:00
finish.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
fixsection.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
fixsection.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
fixsectshr.c
float.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
foll-exec.c
foll-exec.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
foll-fork.c gdb/ 2009-05-17 19:20:33 +00:00
foll-fork.exp gdb/ 2009-05-17 19:20:33 +00:00
foll-vfork.c
foll-vfork.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
foo.c
frame-args.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
frame-args.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
freebpcmd.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
freebpcmd.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
fullname.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
fullname.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
funcargs.c
funcargs.exp * gdb.base/funcargs.exp: Set print frame-arguments to "all". 2009-04-01 22:08:03 +00:00
gcore-buffer-overflow.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
gcore-buffer-overflow.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
gcore.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
gcore.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
gdb1056.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
gdb1090.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
gdb1090.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
gdb1250.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
gdb1250.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
gdb1555-main.c
gdb1555.c
gdb1555.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
gdb1821.c
gdb1821.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
gdb_history
gdbvars.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
grbx.c
hashline1.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
hashline2.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
hashline3.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
help.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
hook-stop-continue.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
hook-stop-continue.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
hook-stop-frame.c * gdb.base/hook-stop-frame.c, gdb.base/hook-stop-frame.exp: Update 2009-01-23 16:01:46 +00:00
hook-stop-frame.exp * gdb.base/hook-stop-frame.c, gdb.base/hook-stop-frame.exp: Update 2009-01-23 16:01:46 +00:00
huge.c
huge.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
ifelse.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
included.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
included.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
included.h Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
infnan.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
infnan.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
info-proc.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
info-target.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
int-type.c
interp.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
interrupt.c PR gdb/9346 2009-01-20 15:33:14 +00:00
interrupt.exp PR gdb/9346 2009-01-20 15:33:14 +00:00
jump.c
jump.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
langs.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
langs0.c
langs1.c
langs1.f
langs2.c
langs2.cxx
lineinc.c
lineinc.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
lineinc1.h
lineinc2.h
lineinc3.h
list.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
list0.c
list0.h
list1.c
logical.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
long_long.c
long_long.exp gdb: 2009-03-20 23:04:40 +00:00
longjmp.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
longjmp.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
m32r.ld
m32rovly.c
macscp.exp * gdb.base/macscp.exp (info_macro): Return undefined if undefined. 2009-05-30 07:58:42 +00:00
macscp1.c gdb 2008-12-11 18:30:28 +00:00
macscp2.h
macscp3.h
macscp4.h
maint.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
Makefile.in
mips_pro.c
mips_pro.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
miscexprs.c
miscexprs.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
multi-forks.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
multi-forks.exp Fix a racy FAIL. 2009-03-14 14:25:55 +00:00
nodebug.c
nodebug.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
nofield.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
nofield.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
opaque.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
opaque0.c
opaque1.c
overlays.c
overlays.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
ovlymgr.c
ovlymgr.h
page.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
pc-fp.c
pc-fp.exp * lib/gdb.exp (get_hexadecimal_valueof): New procedure. 2009-02-14 00:27:56 +00:00
pending.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
pending.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
pendshr.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
pi.txt
pointers.c gdb 2008-10-30 21:44:15 +00:00
pointers.exp gdb: 2009-03-20 23:04:40 +00:00
prelink-lib.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
prelink.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
prelink.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
printcmds.c
printcmds.exp gdb 2009-04-28 01:03:24 +00:00
prologue.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
prologue.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
psymtab.exp * gdb.base/psymtab.exp: Turn off pending breakpoints. 2009-06-26 16:08:20 +00:00
psymtab1.c
psymtab2.c
ptr-typedef.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
ptr-typedef.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
ptype.c
ptype.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
ptype1.c
radix.exp 2009-01-23 Pedro Alves <pedro@codesourcery.com> 2009-01-23 18:47:46 +00:00
randomize.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
randomize.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
readline.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
recurse.c
recurse.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
regs.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
relational.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
relativedebug.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
relativedebug.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
relocate.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
relocate.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
remote.c
remote.exp * gdb.base/remote.exp (get_sizeof): Remove. 2009-02-13 16:13:47 +00:00
remotetimeout.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
reread.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
reread1.c
reread2.c
restore.c
restore.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
return-nodebug.c * return-nodebug.c: Don't include stdio.h. 2009-03-18 15:36:01 +00:00
return-nodebug.exp * return-nodebug.c: Don't include stdio.h. 2009-03-18 15:36:01 +00:00
return-nodebug1.c * return-nodebug.c: Don't include stdio.h. 2009-03-18 15:36:01 +00:00
return.c
return.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
return2.c
return2.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
run.c
savedregs.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
savedregs.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
scope.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
scope0.c
scope1.c
sect-cmd.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
sep-proc.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
sep.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
sep.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
sepdebug.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
sepdebug.exp * dummy-frame.c (dummy_frame): Replace regcache member with 2009-01-19 19:05:01 +00:00
sepsymtab.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
sepsymtab.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
set-lang-auto.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
setshow.c
setshow.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
setvar.c
setvar.exp gdb: 2009-03-20 23:04:40 +00:00
shlib-call.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
shmain.c
shr1.c
shr2.c
shreloc.c
shreloc.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
shreloc1.c
shreloc2.c
sigall.c
sigall.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
sigaltstack.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
sigaltstack.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
sigbpt.c 2009-02-05 Tristan Gingold <gingold@adacore.com> 2009-02-05 13:59:18 +00:00
sigbpt.exp 2009-02-05 Tristan Gingold <gingold@adacore.com> 2009-02-05 13:59:18 +00:00
sigchld.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
sigchld.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
siginfo-addr.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
siginfo-addr.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
siginfo-obj.c 2009-02-06 Pedro Alves <pedro@codesourcery.com> 2009-02-06 22:59:01 +00:00
siginfo-obj.exp 2009-02-06 Pedro Alves <pedro@codesourcery.com> 2009-02-06 22:59:01 +00:00
siginfo.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
siginfo.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
signals.c
signals.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
signull.c 2009-02-05 Tristan Gingold <gingold@adacore.com> 2009-02-05 13:59:18 +00:00
signull.exp 2009-02-05 Tristan Gingold <gingold@adacore.com> 2009-02-05 13:59:18 +00:00
sigrepeat.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
sigrepeat.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
sigstep.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
sigstep.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
sizeof.c
sizeof.exp * lib/gdb.exp (get_valueof): Accept anything as a return value. 2009-02-13 23:37:24 +00:00
so-disc-shr.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
so-impl-ld.c
so-impl-ld.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
so-indr-cl.c
so-indr-cl.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
solib-disc.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
solib-disc.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
solib-display-lib.c 2009-03-05 Paul Pluzhnikov <ppluzhnikov@google.com> 2009-03-05 23:45:14 +00:00
solib-display-main.c 2009-03-05 Paul Pluzhnikov <ppluzhnikov@google.com> 2009-03-05 23:45:14 +00:00
solib-display.exp 2009-03-17 Paul Pluzhnikov <ppluzhnikov@google.com> 2009-03-18 05:43:55 +00:00
solib-symbol-lib.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
solib-symbol-main.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
solib-symbol.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
solib-weak.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
solib-weak.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
solib.c
solib.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
solib1.c
solib2.c
source-error.gdb Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
source.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
spu.ld
ss.h
stack-checking.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
stack-checking.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
start.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
start.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
step-break.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
step-break.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
step-bt.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
step-bt.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
step-line.c
step-line.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
step-line.inp
step-test.c
step-test.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
store.c
store.exp gdb: 2009-03-20 23:04:40 +00:00
structs.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
structs.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
structs2.c
structs2.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
structs3.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
structs3.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
subst.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
sum.c
term.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
trace-commands.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
twice.c
twice.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
type-opaque-lib.c
type-opaque-main.c
type-opaque.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
unload.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
unload.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
unloadshr.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
until.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
unwindonsignal.c * dummy-frame.c (dummy_frame): Replace regcache member with 2009-01-19 19:05:01 +00:00
unwindonsignal.exp * dummy-frame.c (dummy_frame): Replace regcache member with 2009-01-19 19:05:01 +00:00
value-double-free.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
value-double-free.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
varargs.c
varargs.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
vforked-prog.c
volatile.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
watch_thread_num.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
watch_thread_num.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
watchpoint-hw.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
watchpoint-hw.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
watchpoint-solib-shr.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
watchpoint-solib.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
watchpoint-solib.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
watchpoint.c
watchpoint.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
weaklib1.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
weaklib2.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
whatis-exp.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
whatis.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
whatis.exp Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00