Stop ignoring the `cc' field, we actually use it now (e.g. conditional move)

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6555 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Misha Brukman 2003-06-03 00:07:17 +00:00
parent 0ee48d24fe
commit 9ced1671a6
2 changed files with 2 additions and 4 deletions

View File

@ -105,8 +105,7 @@ void CodeEmitterGen::createEmitter(std::ostream &o) {
}
}
} else {
if (Vals[f].getName() == "annul" || Vals[f].getName() == "cc" ||
Vals[f].getName() == "predict")
if (Vals[f].getName() == "annul" || Vals[f].getName() == "predict")
--Offset;
}
}

View File

@ -105,8 +105,7 @@ void CodeEmitterGen::createEmitter(std::ostream &o) {
}
}
} else {
if (Vals[f].getName() == "annul" || Vals[f].getName() == "cc" ||
Vals[f].getName() == "predict")
if (Vals[f].getName() == "annul" || Vals[f].getName() == "predict")
--Offset;
}
}