Hello

not sure if this is the proper place to send packages, but here it goes

currently building for MIPS_SE fails.  It looks like a = instead of a == 
error, but the code is pretty dense so I can't tell if it's trying to be 
overly clever.

patch attached below.

Vince

diff -r b35ef789e6f6 src/arch/mips/mt.hh
--- a/src/arch/mips/mt.hh       Wed Jul 29 00:35:49 2009 -0700
+++ b/src/arch/mips/mt.hh       Wed Jul 29 17:42:04 2009 -0400
@@ -118,7 +118,7 @@
             tc->readRegOtherThread(MISCREG_TC_BIND + Ctrl_Base_DepTag, tid);
         TCBindReg tcBind = tc->readMiscRegNoEffect(MISCREG_TC_BIND);
 
-        if (tidTCBind.curVPE = tcBind.curVPE) {
+        if (tidTCBind.curVPE == tcBind.curVPE) {
 
             TCStatusReg tidTCStatus =
                 tc->readRegOtherThread(MISCREG_TC_STATUS +

_______________________________________________
m5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/m5-dev

Reply via email to