changeset 58e3056d918e in /z/repo/m5
details: http://repo.m5sim.org/m5?cmd=changeset;node=58e3056d918e
description:
        compile: fix accidental conversion of == into =

diffstat:

1 file changed, 1 insertion(+), 1 deletion(-)
src/arch/mips/mt.hh |    2 +-

diffs (12 lines):

diff -r 727622fa50e5 -r 58e3056d918e src/arch/mips/mt.hh
--- a/src/arch/mips/mt.hh       Wed Jul 29 22:24:00 2009 -0700
+++ b/src/arch/mips/mt.hh       Thu Jul 30 17:42:57 2009 -0700
@@ -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
m5-dev@m5sim.org
http://m5sim.org/mailman/listinfo/m5-dev

Reply via email to