changeset edde97a6ea7c in /z/repo/m5
details: http://repo.m5sim.org/m5?cmd=changeset;node=edde97a6ea7c
description:
        config: fix assertion for x86 in FSConfig.py

diffstat:

1 file changed, 1 insertion(+), 1 deletion(-)
configs/common/FSConfig.py |    2 +-

diffs (12 lines):

diff -r 08c34d3fb19d -r edde97a6ea7c configs/common/FSConfig.py
--- a/configs/common/FSConfig.py        Sun Apr 18 13:23:25 2010 -0700
+++ b/configs/common/FSConfig.py        Sun Apr 18 21:33:59 2010 -0700
@@ -315,7 +315,7 @@
 
     # We assume below that there's at least 1MB of memory. We'll require 2
     # just to avoid corner cases.
-    assert(self.physmem.range.second >= 0x200000)
+    assert(self.physmem.range.second.getValue() >= 0x200000)
 
     # Mark the first megabyte of memory as reserved
     self.e820_table.entries.append(X86E820Entry(
_______________________________________________
m5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/m5-dev

Reply via email to