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 | f716cbbdbfbcb9cdf736cbaa22a08d7fa3023b23 (patch) | |
| tree | a6b16f27af8268ef43666a73043198f24b9fd15f /lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp | |
| parent | 29d2dee8ce02be48848c1d0e427b8b7596527e6f (diff) | |
| download | external_llvm-f716cbbdbfbcb9cdf736cbaa22a08d7fa3023b23.zip external_llvm-f716cbbdbfbcb9cdf736cbaa22a08d7fa3023b23.tar.gz external_llvm-f716cbbdbfbcb9cdf736cbaa22a08d7fa3023b23.tar.bz2 | |
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.cpp')
| -rw-r--r-- | lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp b/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp index 65c36c1..40391dd 100644 --- a/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp +++ b/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp @@ -74,8 +74,7 @@ FunctionLoweringInfo::FunctionLoweringInfo(const TargetLowering &tli) : TLI(tli) { } -void FunctionLoweringInfo::set(const Function &fn, MachineFunction &mf, - bool EnableFastISel) { +void FunctionLoweringInfo::set(const Function &fn, MachineFunction &mf) { Fn = &fn; MF = &mf; RegInfo = &MF->getRegInfo(); |
