diff options
author | Nathan Binkert <nate@binkert.org> | 2009-07-30 17:42:57 -0700 |
---|---|---|
committer | Nathan Binkert <nate@binkert.org> | 2009-07-30 17:42:57 -0700 |
commit | 3dd3de5feb31055a48acb39575da25a9cea2626d (patch) | |
tree | 86a1568c78a7f5718b7d6a06928edf504246f98f /src/arch/mips | |
parent | 4971331b4f8f9e79cf6dcc564a85fb432bef8b9c (diff) | |
download | gem5-3dd3de5feb31055a48acb39575da25a9cea2626d.tar.xz |
compile: fix accidental conversion of == into =
Diffstat (limited to 'src/arch/mips')
-rwxr-xr-x | src/arch/mips/mt.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/mips/mt.hh b/src/arch/mips/mt.hh index 3cb81c201..7217c335e 100755 --- a/src/arch/mips/mt.hh +++ b/src/arch/mips/mt.hh @@ -118,7 +118,7 @@ forkThread(TC *tc, Fault &fault, int Rd_bits, int Rs, int Rt) 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 + |