summaryrefslogtreecommitdiffstats
path: root/llvm/utils
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2009-06-26 05:59:16 +0000
committerEvan Cheng <evan.cheng@apple.com>2009-06-26 05:59:16 +0000
commit34c8c7414f57877c4f9fbe1621f879ee1ea079d8 (patch)
treea5422c9b74dacac8cbb58ae8ccfd247f20e11ce6 /llvm/utils
parent1d3b65a6ae368ab503661e726dbbb1f1dfcc9b3a (diff)
downloadbcm5719-llvm-34c8c7414f57877c4f9fbe1621f879ee1ea079d8.tar.gz
bcm5719-llvm-34c8c7414f57877c4f9fbe1621f879ee1ea079d8.zip
Fix a CodeGenDAGPatterns bug. Check if top level predicates match when it's looking for duplicates.
llvm-svn: 74276
Diffstat (limited to 'llvm/utils')
-rw-r--r--llvm/utils/TableGen/CodeGenDAGPatterns.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/utils/TableGen/CodeGenDAGPatterns.cpp b/llvm/utils/TableGen/CodeGenDAGPatterns.cpp
index 839059db3aa..6a7d305f783 100644
--- a/llvm/utils/TableGen/CodeGenDAGPatterns.cpp
+++ b/llvm/utils/TableGen/CodeGenDAGPatterns.cpp
@@ -2390,6 +2390,10 @@ void CodeGenDAGPatterns::GenerateVariants() {
// Scan to see if an instruction or explicit pattern already matches this.
bool AlreadyExists = false;
for (unsigned p = 0, e = PatternsToMatch.size(); p != e; ++p) {
+ // Skip if the top level predicates do not match.
+ if (PatternsToMatch[i].getPredicates() !=
+ PatternsToMatch[p].getPredicates())
+ continue;
// Check to see if this variant already exists.
if (Variant->isIsomorphicTo(PatternsToMatch[p].getSrcPattern(), DepVars)) {
DOUT << " *** ALREADY EXISTS, ignoring variant.\n";
OpenPOWER on IntegriCloud