[llvm-commits] [llvm] r54750 - in /llvm/trunk: lib/Target/X86/X86ISelDAGToDAG.cpp utils/TableGen/DAGISelEmitter.cpp
Dan Gohman
gohman at apple.com
Wed Aug 13 12:55:03 PDT 2008
Author: djg
Date: Wed Aug 13 14:55:00 2008
New Revision: 54750
URL: http://llvm.org/viewvc/llvm-project?rev=54750&view=rev
Log:
Oops, check in these files too, for the FastISel -> Fast rename.
Modified:
llvm/trunk/lib/Target/X86/X86ISelDAGToDAG.cpp
llvm/trunk/utils/TableGen/DAGISelEmitter.cpp
Modified: llvm/trunk/lib/Target/X86/X86ISelDAGToDAG.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86ISelDAGToDAG.cpp?rev=54750&r1=54749&r2=54750&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86ISelDAGToDAG.cpp (original)
+++ llvm/trunk/lib/Target/X86/X86ISelDAGToDAG.cpp Wed Aug 13 14:55:00 2008
@@ -314,7 +314,7 @@
bool X86DAGToDAGISel::CanBeFoldedBy(SDNode *N, SDNode *U, SDNode *Root) const {
- if (FastISel) return false;
+ if (Fast) return false;
// If U use can somehow reach N through another path then U can't fold N or
// it will create a cycle. e.g. In the following diagram, U can reach N
@@ -579,7 +579,7 @@
CurBB = BB; // BB can change as result of isel.
DEBUG(BB->dump());
- if (!FastISel)
+ if (!Fast)
PreprocessForRMW(DAG);
// FIXME: This should only happen when not -fast.
Modified: llvm/trunk/utils/TableGen/DAGISelEmitter.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/TableGen/DAGISelEmitter.cpp?rev=54750&r1=54749&r2=54750&view=diff
==============================================================================
--- llvm/trunk/utils/TableGen/DAGISelEmitter.cpp (original)
+++ llvm/trunk/utils/TableGen/DAGISelEmitter.cpp Wed Aug 13 14:55:00 2008
@@ -429,7 +429,7 @@
NumInputRootOps = N->getNumChildren();
if (DisablePatternForFastISel(N, CGP))
- emitCheck("!FastISel");
+ emitCheck("!Fast");
std::string PredicateCheck;
for (unsigned i = 0, e = Predicates->getSize(); i != e; ++i) {
More information about the llvm-commits
mailing list