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 | 7451d3e09d26115195280ba36f686a0a90815089 (patch) | |
tree | a6b16f27af8268ef43666a73043198f24b9fd15f /lib/CodeGen/SelectionDAG/FunctionLoweringInfo.h | |
parent | 0f9c658558f70ba0017575019adbbd0b0b6b13e5 (diff) |
SelectionDAG shouldn't have a FunctionLoweringInfo member. RegsForValue
shouldn't have a TargetLoweringInfo member. And FunctionLoweringInfo::set
doesn't needs its EnableFastISel argument.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@105101 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/FunctionLoweringInfo.h')
-rw-r--r-- | lib/CodeGen/SelectionDAG/FunctionLoweringInfo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.h b/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.h index 4067a5b330..703e0aec28 100644 --- a/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.h +++ b/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 |