From: Michael Snyder Date: Wed, 11 Nov 2009 19:27:02 +0000 (+0000) Subject: 2009-10-28 Michael Snyder X-Git-Tag: cgen-snapshot-20091201~219 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9659616a9690efc1e75c801513df6f59a16cd33f;p=platform%2Fupstream%2Fbinutils.git 2009-10-28 Michael Snyder * findvar.c (top level): Fix and add comments. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 2fb7383..98b8e43 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2009-10-28 Michael Snyder + + * findvar.c (top level): Fix and add comments. + 2009-11-10 Keith Seitz * c-expy. (operator_stoken): New function. @@ -67,6 +71,11 @@ 2009-11-10 Michael Snyder + * dcache.c (dcache_invalidate_line): Remove block from used list + when adding it to freed list. + +2009-11-10 Michael Snyder + * dcache.c: Fix typo, shorten long lines in comment. 2009-11-10 Tristan Gingold diff --git a/gdb/findvar.c b/gdb/findvar.c index 8c027c9..abfe5bb 100644 --- a/gdb/findvar.c +++ b/gdb/findvar.c @@ -36,8 +36,9 @@ #include "block.h" #include "objfiles.h" -/* Basic byte-swapping routines. GDB has needed these for a long time... - All extract a target-format integer at ADDR which is LEN bytes long. */ +/* Basic byte-swapping routines. All 'extract' functions return a + host-format integer from a target-format integer at ADDR which is + LEN bytes long. */ #if TARGET_CHAR_BIT != 8 || HOST_CHAR_BIT != 8 /* 8 bit characters are a pretty safe assumption these days, so we @@ -179,6 +180,8 @@ extract_typed_address (const gdb_byte *buf, struct type *type) return gdbarch_pointer_to_address (get_type_arch (type), type, buf); } +/* All 'store' functions accept a host-format integer and store a + target-format integer at ADDR which is LEN bytes long. */ void store_signed_integer (gdb_byte *addr, int len,