Skip to content

Commit

Permalink
[mips] Removed IsSoftFloat from MipsISelLowering::analyzeCallOperands…
Browse files Browse the repository at this point in the history
…(). NFC

Summary:
It isn't used anymore.

Depends on D6081

Reviewers: vmedic

Reviewed By: vmedic

Subscribers: llvm-commits

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

llvm-svn: 221463
  • Loading branch information
dsandersllvm committed Nov 6, 2014
1 parent ac6a2f5 commit 2373af3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
8 changes: 4 additions & 4 deletions llvm/lib/Target/Mips/MipsISelLowering.cpp
Expand Up @@ -2593,8 +2593,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.
Expand Down Expand Up @@ -3600,8 +3600,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) &&
Expand Down
3 changes: 1 addition & 2 deletions llvm/lib/Target/Mips/MipsISelLowering.h
Expand Up @@ -368,8 +368,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);

Expand Down

0 comments on commit 2373af3

Please sign in to comment.