diff options
| author | Dan Gohman <gohman@apple.com> | 2010-05-29 17:03:36 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2010-05-29 17:03:36 +0000 |
| commit | d16aa541af1e7622821247bb19ee0e384075fe27 (patch) | |
| tree | 615c98801d0375456cbd92ff2cb4aeb9375080e3 /llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.h | |
| parent | c488e92f0b0efdcb3b2ffdb7d4f1c9d82374861c (diff) | |
| download | bcm5719-llvm-d16aa541af1e7622821247bb19ee0e384075fe27.tar.gz bcm5719-llvm-d16aa541af1e7622821247bb19ee0e384075fe27.zip | |
SelectionDAG shouldn't have a FunctionLoweringInfo member. RegsForValue
shouldn't have a TargetLoweringInfo member. And FunctionLoweringInfo::set
doesn't needs its EnableFastISel argument.
llvm-svn: 105101
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.h')
| -rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.h b/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.h index 4067a5b3304..703e0aec28c 100644 --- a/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.h +++ b/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.h @@ -106,7 +106,7 @@ public: /// set - Initialize this FunctionLoweringInfo with the given Function /// and its associated MachineFunction. /// - void set(const Function &Fn, MachineFunction &MF, bool EnableFastISel); + void set(const Function &Fn, MachineFunction &MF); /// clear - Clear out all the function-specific state. This returns this /// FunctionLoweringInfo to an empty state, ready to be used for a |

