aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/SelectionDAG
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-05-05 23:58:35 +0000
committerDan Gohman <gohman@apple.com>2010-05-05 23:58:35 +0000
commit33dcdb7421cfa95ab8b8c19636d4c6d9cb96d5e6 (patch)
tree6e80e827afaa6b4c48c55989530069d16a072b7b /lib/CodeGen/SelectionDAG
parent8fc443d36a6ee0d75c419c46f1ef88382e4960dc (diff)
downloadexternal_llvm-33dcdb7421cfa95ab8b8c19636d4c6d9cb96d5e6.zip
external_llvm-33dcdb7421cfa95ab8b8c19636d4c6d9cb96d5e6.tar.gz
external_llvm-33dcdb7421cfa95ab8b8c19636d4c6d9cb96d5e6.tar.bz2
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
Diffstat (limited to 'lib/CodeGen/SelectionDAG')
-rw-r--r--lib/CodeGen/SelectionDAG/FastISel.cpp3
1 files changed, 2 insertions, 1 deletions
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 @@ FastISel::FastISel(MachineFunction &mf,
TM(MF.getTarget()),
TD(*TM.getTargetData()),
TII(*TM.getInstrInfo()),
- TLI(*TM.getTargetLowering()) {
+ TLI(*TM.getTargetLowering()),
+ IsBottomUp(false) {
}
FastISel::~FastISel() {}