summaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2003-06-05 23:15:25 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2003-06-05 23:15:25 +0000
commit3d194ac26bd61968ac9ed8de5bde42e902724d19 (patch)
tree6976860146d40bf885cde2b4992380660c00fec5 /support
parentcf819454e4969dcb79a0c32c2638addd85d8fe3a (diff)
downloadllvm-3d194ac26bd61968ac9ed8de5bde42e902724d19.tar.gz
llvm-3d194ac26bd61968ac9ed8de5bde42e902724d19.tar.bz2
llvm-3d194ac26bd61968ac9ed8de5bde42e902724d19.tar.xz
* Stop ignoring cc registers, since we actually use them in branches.
* Added comment as to why we are still ignoring predict and annul bits. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6636 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'support')
-rw-r--r--support/tools/TableGen/CodeEmitterGen.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/support/tools/TableGen/CodeEmitterGen.cpp b/support/tools/TableGen/CodeEmitterGen.cpp
index b32a38aa5f..cd259ec5d7 100644
--- a/support/tools/TableGen/CodeEmitterGen.cpp
+++ b/support/tools/TableGen/CodeEmitterGen.cpp
@@ -63,8 +63,8 @@ void CodeEmitterGen::createEmitter(std::ostream &o) {
for (unsigned i = 0, e = Vals.size(); i != e; ++i) {
if (Vals[i].getName() != "Inst" &&
!Vals[i].getValue()->isComplete() &&
+ /* ignore annul and predict bits since no one sets them yet */
Vals[i].getName() != "annul" &&
- Vals[i].getName() != "cc" &&
Vals[i].getName() != "predict")
{
o << " // op" << op << ": " << Vals[i].getName() << "\n"
@@ -105,6 +105,7 @@ void CodeEmitterGen::createEmitter(std::ostream &o) {
}
}
} else {
+ // ignore annul and predict bits since no one sets them yet
if (Vals[f].getName() == "annul" || Vals[f].getName() == "predict")
--Offset;
}