aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-08-13 19:55:00 +0000
committerDan Gohman <gohman@apple.com>2008-08-13 19:55:00 +0000
commitea9587bf41ab9b3de3846ab7de797a5d9bbdeec7 (patch)
tree24fce25242c7ac5360a2ff8c0c978ebf7927f3c9
parent925a7e8ed6522f291b4ae559ccfa56db461016e3 (diff)
downloadexternal_llvm-ea9587bf41ab9b3de3846ab7de797a5d9bbdeec7.zip
external_llvm-ea9587bf41ab9b3de3846ab7de797a5d9bbdeec7.tar.gz
external_llvm-ea9587bf41ab9b3de3846ab7de797a5d9bbdeec7.tar.bz2
Oops, check in these files too, for the FastISel -> Fast rename.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54750 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/X86/X86ISelDAGToDAG.cpp4
-rw-r--r--utils/TableGen/DAGISelEmitter.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/X86/X86ISelDAGToDAG.cpp b/lib/Target/X86/X86ISelDAGToDAG.cpp
index 7834f6e..b76d3e2 100644
--- a/lib/Target/X86/X86ISelDAGToDAG.cpp
+++ b/lib/Target/X86/X86ISelDAGToDAG.cpp
@@ -314,7 +314,7 @@ static inline bool isNonImmUse(SDNode *Root, SDNode *Def, SDNode *ImmedUse,
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 @@ void X86DAGToDAGISel::InstructionSelect(SelectionDAG &DAG) {
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.
diff --git a/utils/TableGen/DAGISelEmitter.cpp b/utils/TableGen/DAGISelEmitter.cpp
index c9ca971..9f0f155 100644
--- a/utils/TableGen/DAGISelEmitter.cpp
+++ b/utils/TableGen/DAGISelEmitter.cpp
@@ -429,7 +429,7 @@ public:
NumInputRootOps = N->getNumChildren();
if (DisablePatternForFastISel(N, CGP))
- emitCheck("!FastISel");
+ emitCheck("!Fast");
std::string PredicateCheck;
for (unsigned i = 0, e = Predicates->getSize(); i != e; ++i) {