commit | a7a0ed79012ea36f838239cf1d04959711aec2a9 | [log] [tgz] |
---|---|---|
author | Dan Gohman <gohman@apple.com> | Wed May 05 23:58:35 2010 +0000 |
committer | Dan Gohman <gohman@apple.com> | Wed May 05 23:58:35 2010 +0000 |
tree | 6e80e827afaa6b4c48c55989530069d16a072b7b | |
parent | 851f87c6c98af936ba68c5ca8962df3832f8a5fc [diff] [blame] |
Add an "IsBottomUp" member function to FastISel, which will be used to support a new bottom-up mode. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@103138 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/SelectionDAG/FastISel.cpp b/lib/CodeGen/SelectionDAG/FastISel.cpp index b4c3833..078e5fd 100644 --- a/lib/CodeGen/SelectionDAG/FastISel.cpp +++ b/lib/CodeGen/SelectionDAG/FastISel.cpp
@@ -782,7 +782,8 @@ TM(MF.getTarget()), TD(*TM.getTargetData()), TII(*TM.getInstrInfo()), - TLI(*TM.getTargetLowering()) { + TLI(*TM.getTargetLowering()), + IsBottomUp(false) { } FastISel::~FastISel() {}