From 94fd3388b0170757e493b712805504d1dfb92624 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 1 Mar 2010 19:39:15 +0000 Subject: [PATCH] don't emit the old sdnodexform stuff for the new isel. llvm-svn: 97486 --- llvm/utils/TableGen/DAGISelEmitter.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/utils/TableGen/DAGISelEmitter.cpp b/llvm/utils/TableGen/DAGISelEmitter.cpp index 8f6d821e56f9..bc57428f7888 100644 --- a/llvm/utils/TableGen/DAGISelEmitter.cpp +++ b/llvm/utils/TableGen/DAGISelEmitter.cpp @@ -1942,7 +1942,6 @@ void DAGISelEmitter::run(raw_ostream &OS) { }); // FIXME: These are being used by hand written code, gross. - EmitNodeTransforms(OS); EmitPredicateFunctions(OS); #ifdef ENABLE_NEW_ISEL @@ -1980,7 +1979,8 @@ void DAGISelEmitter::run(raw_ostream &OS) { delete TheMatcher; #else - + EmitNodeTransforms(OS); + // At this point, we have full information about the 'Patterns' we need to // parse, both implicitly from instructions as well as from explicit pattern // definitions. Emit the resultant instruction selector.