From 0f9a3671b6d12f887501bc80ca50bb23c383686d Mon Sep 17 00:00:00 2001 From: Ali Saidi Date: Tue, 18 Jan 2011 16:30:02 -0600 Subject: ARM: Add support for moving predicated false dest operands from sources. --- src/cpu/o3/iew_impl.hh | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/cpu/o3/iew_impl.hh') diff --git a/src/cpu/o3/iew_impl.hh b/src/cpu/o3/iew_impl.hh index 2acb941e0..e1af20852 100644 --- a/src/cpu/o3/iew_impl.hh +++ b/src/cpu/o3/iew_impl.hh @@ -1261,6 +1261,8 @@ DefaultIEW::executeInsts() // will be replaced and we will lose it. if (inst->getFault() == NoFault) { inst->execute(); + if (inst->readPredicate() == false) + inst->forwardOldRegs(); } inst->setExecuted(); -- cgit v1.2.3