diff options
author | Dan Gohman <gohman@apple.com> | 2010-05-05 23:58:35 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-05-05 23:58:35 +0000 |
commit | ffcb590b0fdb57033149c53d7b9884505d225bd5 (patch) | |
tree | d570cc3a1bd793e19db00ae9fa6561bc7e963f6a /llvm/lib/CodeGen/SelectionDAG/FastISel.cpp | |
parent | 482fa218d46a28f236e5c850fe3ffe0a29cce8e1 (diff) | |
download | bcm5719-llvm-ffcb590b0fdb57033149c53d7b9884505d225bd5.tar.gz bcm5719-llvm-ffcb590b0fdb57033149c53d7b9884505d225bd5.zip |
Add an "IsBottomUp" member function to FastISel, which will be used to
support a new bottom-up mode.
llvm-svn: 103138
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/FastISel.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/FastISel.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp b/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp index b4c38332691..078e5fd3c07 100644 --- a/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp +++ b/llvm/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() {} |