diff options
Diffstat (limited to 'lib/Target/Mips/MipsCCState.h')
-rw-r--r-- | lib/Target/Mips/MipsCCState.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/Target/Mips/MipsCCState.h b/lib/Target/Mips/MipsCCState.h index 026b7b5e3275d..9a08adef38230 100644 --- a/lib/Target/Mips/MipsCCState.h +++ b/lib/Target/Mips/MipsCCState.h @@ -10,9 +10,9 @@ #ifndef MIPSCCSTATE_H #define MIPSCCSTATE_H +#include "MipsISelLowering.h" #include "llvm/ADT/SmallVector.h" #include "llvm/CodeGen/CallingConvLower.h" -#include "MipsISelLowering.h" namespace llvm { class SDNode; @@ -65,10 +65,9 @@ private: public: MipsCCState(CallingConv::ID CC, bool isVarArg, MachineFunction &MF, - const TargetMachine &TM, SmallVectorImpl<CCValAssign> &locs, - LLVMContext &C, + SmallVectorImpl<CCValAssign> &locs, LLVMContext &C, SpecialCallingConvType SpecialCC = NoSpecialCallingConv) - : CCState(CC, isVarArg, MF, TM, locs, C), SpecialCallingConv(SpecialCC) {} + : CCState(CC, isVarArg, MF, locs, C), SpecialCallingConv(SpecialCC) {} void AnalyzeCallOperands(const SmallVectorImpl<ISD::OutputArg> &Outs, |