summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2003-06-03 00:07:17 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2003-06-03 00:07:17 +0000
commit9ced1671a6c27dd680849e302b85b0cd3fdfe097 (patch)
tree1f19e70129daab8f74591e4ee9e7c790ccded89c /utils
parent0ee48d24fe0a6de9b06bf122c4deaa9f570c8d8b (diff)
downloadllvm-9ced1671a6c27dd680849e302b85b0cd3fdfe097.tar.gz
llvm-9ced1671a6c27dd680849e302b85b0cd3fdfe097.tar.bz2
llvm-9ced1671a6c27dd680849e302b85b0cd3fdfe097.tar.xz
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
Diffstat (limited to 'utils')
-rw-r--r--utils/TableGen/CodeEmitterGen.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/utils/TableGen/CodeEmitterGen.cpp b/utils/TableGen/CodeEmitterGen.cpp
index 0ba625311a..b32a38aa5f 100644
--- a/utils/TableGen/CodeEmitterGen.cpp
+++ b/utils/TableGen/CodeEmitterGen.cpp
@@ -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;
}
}