Merged from r221463:

[mips] Removed IsSoftFloat from MipsISelLowering::analyzeCallOperands(). NFC

Summary:
It isn't used anymore.

Reviewers: vmedic

Reviewed By: vmedic

Subscribers: llvm-commits

Differential Revision: http://reviews.llvm.org/D6083




git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_35@223044 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Daniel Sanders 2014-12-01 16:33:17 +00:00
parent 05a4461c15
commit 15093b561d
2 changed files with 5 additions and 6 deletions

View File

@ -2587,8 +2587,8 @@ MipsTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
MipsCC MipsCCInfo(CallConv, Subtarget, CCInfo);
CCInfo.PreAnalyzeCallOperandsForF128_(Outs, CLI.getArgs(), Callee.getNode());
MipsCCInfo.analyzeCallOperands(Outs, IsVarArg, Subtarget.abiUsesSoftFloat(),
Callee.getNode(), CLI.getArgs(), CCInfo);
MipsCCInfo.analyzeCallOperands(Outs, IsVarArg, Callee.getNode(),
CLI.getArgs(), CCInfo);
CCInfo.ClearOriginalArgWasF128();
// Get a count of how many bytes are to be pushed on the stack.
@ -3589,8 +3589,8 @@ MipsTargetLowering::MipsCC::MipsCC(CallingConv::ID CC,
void MipsTargetLowering::MipsCC::analyzeCallOperands(
const SmallVectorImpl<ISD::OutputArg> &Args, bool IsVarArg,
bool IsSoftFloat, const SDNode *CallNode,
std::vector<ArgListEntry> &FuncArgs, CCState &State) {
const SDNode *CallNode, std::vector<ArgListEntry> &FuncArgs,
CCState &State) {
MipsCC::SpecialCallingConvType SpecialCallingConv =
getSpecialCallingConv(CallNode);
assert((CallConv != CallingConv::Fast || !IsVarArg) &&

View File

@ -352,8 +352,7 @@ namespace llvm {
CCState &Info);
void analyzeCallOperands(const SmallVectorImpl<ISD::OutputArg> &Outs,
bool IsVarArg, bool IsSoftFloat,
const SDNode *CallNode,
bool IsVarArg, const SDNode *CallNode,
std::vector<ArgListEntry> &FuncArgs,
CCState &State);