summaryrefslogtreecommitdiffstats
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
commit7e66953f17246f33fd7749147c5b54c4f3c8cc5f (patch)
tree8d2003a19f2be753f37c1069c04c7ca08ee0c4ba
parente7021ad0332767812bea6575f4e42bc5d2b15cd1 (diff)
downloadbcm5719-llvm-7e66953f17246f33fd7749147c5b54c4f3c8cc5f.tar.gz
bcm5719-llvm-7e66953f17246f33fd7749147c5b54c4f3c8cc5f.zip
Stop ignoring the `cc' field, we actually use it now (e.g. conditional move)
llvm-svn: 6555
-rw-r--r--llvm/support/tools/TableGen/CodeEmitterGen.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/support/tools/TableGen/CodeEmitterGen.cpp b/llvm/support/tools/TableGen/CodeEmitterGen.cpp
index 0ba625311a0..b32a38aa5fe 100644
--- a/llvm/support/tools/TableGen/CodeEmitterGen.cpp
+++ b/llvm/support/tools/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;
}
}
OpenPOWER on IntegriCloud