summaryrefslogtreecommitdiff
path: root/utils/TableGen
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-03-04 01:26:00 +0000
committerChris Lattner <sabre@nondot.org>2010-03-04 01:26:00 +0000
commit6b4ae7172529503bd28333f488857c0d4fdc3e39 (patch)
treedd0cd05e336f4698618dffe50b48ae2ba0c61814 /utils/TableGen
parent9752fb10a4ad9a8144740b092d2b4f513897835c (diff)
downloadllvm-6b4ae7172529503bd28333f488857c0d4fdc3e39.tar.gz
llvm-6b4ae7172529503bd28333f488857c0d4fdc3e39.tar.bz2
llvm-6b4ae7172529503bd28333f488857c0d4fdc3e39.tar.xz
zap fixme.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97705 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen')
-rw-r--r--utils/TableGen/DAGISelMatcherGen.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/utils/TableGen/DAGISelMatcherGen.cpp b/utils/TableGen/DAGISelMatcherGen.cpp
index 783c470f9b..5488853e83 100644
--- a/utils/TableGen/DAGISelMatcherGen.cpp
+++ b/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()));