summaryrefslogtreecommitdiffstats
path: root/llvm/utils/TableGen/DAGISelMatcherEmitter.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-02-24 07:35:09 +0000
committerChris Lattner <sabre@nondot.org>2010-02-24 07:35:09 +0000
commit9812470bc4ddecdf093eff6b99cffaa5507c3fea (patch)
treef23dd1a4381db253c5eb1789f7fbd07fef2510c8 /llvm/utils/TableGen/DAGISelMatcherEmitter.cpp
parent1826980fc8b198d417c3ffdd8222afb60bd0a189 (diff)
downloadbcm5719-llvm-9812470bc4ddecdf093eff6b99cffaa5507c3fea.tar.gz
bcm5719-llvm-9812470bc4ddecdf093eff6b99cffaa5507c3fea.zip
Since the new instruction selector now works, I don't need to keep
the old one around for comparative purposes: have the ENABLE_NEW_ISEL #define (which is not enabled on mainline) stop emitting the old isel at all, yay for build time win. llvm-svn: 97033
Diffstat (limited to 'llvm/utils/TableGen/DAGISelMatcherEmitter.cpp')
-rw-r--r--llvm/utils/TableGen/DAGISelMatcherEmitter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/TableGen/DAGISelMatcherEmitter.cpp b/llvm/utils/TableGen/DAGISelMatcherEmitter.cpp
index e78be79119d..e264d77cec5 100644
--- a/llvm/utils/TableGen/DAGISelMatcherEmitter.cpp
+++ b/llvm/utils/TableGen/DAGISelMatcherEmitter.cpp
@@ -503,7 +503,7 @@ void llvm::EmitMatcherTable(const MatcherNode *Matcher, raw_ostream &O) {
formatted_raw_ostream OS(O);
OS << "// The main instruction selector code.\n";
- OS << "SDNode *SelectCode2(SDNode *N) {\n";
+ OS << "SDNode *SelectCode(SDNode *N) {\n";
MatcherTableEmitter MatcherEmitter;
OpenPOWER on IntegriCloud