summary refs log tree commit diff stats
path: root/memory.c
diff options
context:
space:
mode:
authorFam Zheng <famz@redhat.com>2014-08-11 10:18:31 +0800
committerMichael Tokarev <mjt@tls.msk.ru>2014-08-15 18:54:06 +0400
commitc9cdaa3ab95031ebdb6a3cf8fdc5edadd0cb851b (patch)
tree944027df0002a73dbc14a676597d391bcc0a95ba /memory.c
parentd6c140a771d3be4ef677a3c3eeb7dbfa7fb30378 (diff)
downloadfocaccia-qemu-c9cdaa3ab95031ebdb6a3cf8fdc5edadd0cb851b.tar.gz
focaccia-qemu-c9cdaa3ab95031ebdb6a3cf8fdc5edadd0cb851b.zip
memory: Update obsolete comment about AddrRange field type
We are not 64 bit any more since

08dafab4 memory: use 128-bit integers for sizes and intermediates

but the comment is forgotten to be updated.

Signed-off-by: Fam Zheng <famz@redhat.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'memory.c')
-rw-r--r--memory.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/memory.c b/memory.c
index 64d7176193..dbe6675589 100644
--- a/memory.c
+++ b/memory.c
@@ -56,8 +56,7 @@ static void memory_init(void)
 typedef struct AddrRange AddrRange;
 
 /*
- * Note using signed integers limits us to physical addresses at most
- * 63 bits wide.  They are needed for negative offsetting in aliases
+ * Note that signed integers are needed for negative offsetting in aliases
  * (large MemoryRegion::alias_offset).
  */
 struct AddrRange {