aboutsummaryrefslogtreecommitdiffstats
path: root/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
commitc84edb7bdd345db280c908583d55bdf4e670a225 (patch)
tree0e316ddeaa014355b5383313a9a3a0ab48c8bfed /utils/TableGen/DAGISelMatcherEmitter.cpp
parent19b5a7590b784f19875b9880ea8838c393431656 (diff)
downloadexternal_llvm-c84edb7bdd345db280c908583d55bdf4e670a225.zip
external_llvm-c84edb7bdd345db280c908583d55bdf4e670a225.tar.gz
external_llvm-c84edb7bdd345db280c908583d55bdf4e670a225.tar.bz2
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97033 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/DAGISelMatcherEmitter.cpp')
-rw-r--r--utils/TableGen/DAGISelMatcherEmitter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/TableGen/DAGISelMatcherEmitter.cpp b/utils/TableGen/DAGISelMatcherEmitter.cpp
index e78be79..e264d77 100644
--- a/utils/TableGen/DAGISelMatcherEmitter.cpp
+++ b/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;