2009-11-10 Michael Snyder <msnyder@vmware.com>

* dcache.c: Fix typo, shorten long lines in comment.
This commit is contained in:
Michael Snyder 2009-11-10 18:36:50 +00:00
parent 0d999f3337
commit e124be18d9
2 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,7 @@
2009-11-10 Michael Snyder <msnyder@vmware.com>
* dcache.c: Fix typo, shorten long lines in comment.
2009-11-10 Tristan Gingold <gingold@adacore.com> 2009-11-10 Tristan Gingold <gingold@adacore.com>
* avr-tdep.c: Add AVR_PSEUDO_PC_REGNUM and AVR_NUM_PSEUDO_REGS. * avr-tdep.c: Add AVR_PSEUDO_PC_REGNUM and AVR_NUM_PSEUDO_REGS.

View file

@ -41,9 +41,9 @@
of data, such as when performing a backtrace. of data, such as when performing a backtrace.
The cache is a splay tree along with a linked list for replacement. The cache is a splay tree along with a linked list for replacement.
Each block caches a LINE_SIZE area of memory. Wtihin each line we remember Each block caches a LINE_SIZE area of memory. Within each line we
the address of the line (which must be a multiple of LINE_SIZE) and the remember the address of the line (which must be a multiple of
actual data block. LINE_SIZE) and the actual data block.
Lines are only allocated as needed, so DCACHE_SIZE really specifies the Lines are only allocated as needed, so DCACHE_SIZE really specifies the
*maximum* number of lines in the cache. *maximum* number of lines in the cache.