diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2007-04-27 13:20:59 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2007-04-27 13:20:59 +0000 |
commit | f7dd0ed7deb69614c40719a0c37985b3ec26503b (patch) | |
tree | b2444b9a6127a2b4a543d6982efc8415c0df3fb0 /gdb/Makefile.in | |
parent | d91787632abd4c9bb5db0be1bae614243b3abb58 (diff) | |
download | gdb-f7dd0ed7deb69614c40719a0c37985b3ec26503b.zip gdb-f7dd0ed7deb69614c40719a0c37985b3ec26503b.tar.gz gdb-f7dd0ed7deb69614c40719a0c37985b3ec26503b.tar.bz2 |
* inf-ptrace.c: Include "gdb_stdint.h".
(inf_ptrace_xfer_partial): Use "uintptr_t" instead of "long" as
intermediate type when casting CORE_ADDR to PTRACE_TYPE_ARG3.
(inf_ptrace_fetch_register): Add intermediate cast to "uintptr_t"
before casting CORE_ADDR to PTRACE_TYPE_ARG3.
(inf_ptrace_store_register): Likewise.
* Makefile.in (inf-ptrace.o): Update dependencies.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 7cabd60..2551ea1 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -2170,7 +2170,7 @@ inflow.o: inflow.c $(defs_h) $(frame_h) $(inferior_h) $(command_h) \ $(serial_h) $(terminal_h) $(target_h) $(gdbthread_h) $(gdb_string_h) \ $(inflow_h) $(gdb_select_h) inf-ptrace.o: inf-ptrace.c $(defs_h) $(command_h) $(inferior_h) $(inflow_h) \ - $(gdbcore_h) $(regcache_h) $(gdb_assert_h) \ + $(gdbcore_h) $(regcache_h) $(gdb_stdint_h) $(gdb_assert_h) \ $(gdb_string_h) $(gdb_ptrace_h) $(gdb_wait_h) $(inf_child_h) infptrace.o: infptrace.c $(defs_h) $(command_h) $(frame_h) $(gdbcore_h) \ $(inferior_h) $(regcache_h) $(target_h) $(gdb_assert_h) \ |