From 3f0f71955d5ed9d8bd793025f9e9dd4ce221f3a8 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 4 Mar 2010 01:26:00 +0000 Subject: [PATCH] zap fixme. llvm-svn: 97705 --- llvm/utils/TableGen/DAGISelMatcherGen.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/llvm/utils/TableGen/DAGISelMatcherGen.cpp b/llvm/utils/TableGen/DAGISelMatcherGen.cpp index 783c470f9b62..5488853e8367 100644 --- a/llvm/utils/TableGen/DAGISelMatcherGen.cpp +++ b/llvm/utils/TableGen/DAGISelMatcherGen.cpp @@ -476,10 +476,6 @@ bool MatcherGen::EmitMatcherCode(unsigned Variant) { // If the pattern has a predicate on it (e.g. only enabled when a subtarget // feature is around, do the check). - // FIXME: This should get emitted after the match code below to encourage - // sharing. This can't happen until we get an X86ISD::AddrMode node made by - // dag combine, eliminating the horrible side-effect-full stuff from - // X86's MatchAddress. if (!Pattern.getPredicateCheck().empty()) AddMatcher(new CheckPatternPredicateMatcher(Pattern.getPredicateCheck()));