diff options
Diffstat (limited to 'llvm/lib/CodeGen')
| -rw-r--r-- | llvm/lib/CodeGen/InstrSched/InstrScheduling.cpp | 2 | ||||
| -rw-r--r-- | llvm/lib/CodeGen/InstrSched/SchedGraph.cpp | 4 | ||||
| -rw-r--r-- | llvm/lib/CodeGen/InstrSched/SchedGraph.h | 4 | ||||
| -rw-r--r-- | llvm/lib/CodeGen/MachineFunction.cpp | 4 | ||||
| -rw-r--r-- | llvm/lib/CodeGen/MachineInstr.cpp | 10 | 
5 files changed, 12 insertions, 12 deletions
| diff --git a/llvm/lib/CodeGen/InstrSched/InstrScheduling.cpp b/llvm/lib/CodeGen/InstrSched/InstrScheduling.cpp index 2271c780a3c..19c6922d342 100644 --- a/llvm/lib/CodeGen/InstrSched/InstrScheduling.cpp +++ b/llvm/lib/CodeGen/InstrSched/InstrScheduling.cpp @@ -79,7 +79,7 @@ private:  //----------------------------------------------------------------------  template<class _NodeType> -class ScheduleIterator: public std::forward_iterator<_NodeType, ptrdiff_t> { +class ScheduleIterator : public forward_iterator<_NodeType, ptrdiff_t> {  private:    unsigned cycleNum;    unsigned slotNum; diff --git a/llvm/lib/CodeGen/InstrSched/SchedGraph.cpp b/llvm/lib/CodeGen/InstrSched/SchedGraph.cpp index 8a9c8e573b3..781604eaae7 100644 --- a/llvm/lib/CodeGen/InstrSched/SchedGraph.cpp +++ b/llvm/lib/CodeGen/InstrSched/SchedGraph.cpp @@ -132,7 +132,7 @@ SchedGraphEdge::~SchedGraphEdge()  {  } -void SchedGraphEdge::dump(int indent=0) const { +void SchedGraphEdge::dump(int indent) const {    cerr << std::string(indent*2, ' ') << *this;   } @@ -171,7 +171,7 @@ SchedGraphNode::~SchedGraphNode()                  deleter<SchedGraphEdge>);  } -void SchedGraphNode::dump(int indent=0) const { +void SchedGraphNode::dump(int indent) const {    cerr << std::string(indent*2, ' ') << *this;   } diff --git a/llvm/lib/CodeGen/InstrSched/SchedGraph.h b/llvm/lib/CodeGen/InstrSched/SchedGraph.h index 7db22d67346..0d59734e2da 100644 --- a/llvm/lib/CodeGen/InstrSched/SchedGraph.h +++ b/llvm/lib/CodeGen/InstrSched/SchedGraph.h @@ -377,7 +377,7 @@ private:  // for <const SchedGraphNode, SchedGraphNode::const_iterator>.  //   template <class _NodeType, class _EdgeType, class _EdgeIter> -class SGPredIterator: public std::bidirectional_iterator<_NodeType, ptrdiff_t> { +class SGPredIterator: public bidirectional_iterator<_NodeType, ptrdiff_t> {  protected:    _EdgeIter oi;  public: @@ -406,7 +406,7 @@ public:  };  template <class _NodeType, class _EdgeType, class _EdgeIter> -class SGSuccIterator: public std::bidirectional_iterator<_NodeType, ptrdiff_t> { +class SGSuccIterator : public bidirectional_iterator<_NodeType, ptrdiff_t> {  protected:    _EdgeIter oi;  public: diff --git a/llvm/lib/CodeGen/MachineFunction.cpp b/llvm/lib/CodeGen/MachineFunction.cpp index ce39b45f12c..f32f647e112 100644 --- a/llvm/lib/CodeGen/MachineFunction.cpp +++ b/llvm/lib/CodeGen/MachineFunction.cpp @@ -139,7 +139,7 @@ int  MachineCodeForMethod::computeOffsetforLocalVar(const TargetMachine& target,                                                 const Value* val,                                                 unsigned int& getPaddedSize, -                                               unsigned int  sizeToUse = 0) +                                               unsigned int  sizeToUse)  {    bool growUp;    int firstOffset =target.getFrameInfo().getFirstAutomaticVarOffset(*this, @@ -174,7 +174,7 @@ MachineCodeForMethod::computeOffsetforLocalVar(const TargetMachine& target,  int  MachineCodeForMethod::allocateLocalVar(const TargetMachine& target,                                         const Value* val, -                                       unsigned int sizeToUse = 0) +                                       unsigned int sizeToUse)  {    assert(! automaticVarsAreaFrozen &&           "Size of auto vars area has been used to compute an offset so " diff --git a/llvm/lib/CodeGen/MachineInstr.cpp b/llvm/lib/CodeGen/MachineInstr.cpp index 4fc37306588..124c28a2d97 100644 --- a/llvm/lib/CodeGen/MachineInstr.cpp +++ b/llvm/lib/CodeGen/MachineInstr.cpp @@ -44,8 +44,8 @@ void  MachineInstr::SetMachineOperandVal(unsigned int i,                                     MachineOperand::MachineOperandType opType,                                     Value* _val, -                                   bool isdef=false, -                                   bool isDefAndUse=false) +                                   bool isdef, +                                   bool isDefAndUse)  {    assert(i < operands.size());    operands[i].Initialize(opType, _val); @@ -69,9 +69,9 @@ MachineInstr::SetMachineOperandConst(unsigned int i,  void  MachineInstr::SetMachineOperandReg(unsigned int i,                                     int regNum, -                                   bool isdef=false, -                                   bool isDefAndUse=false, -                                   bool isCCReg=false) +                                   bool isdef, +                                   bool isDefAndUse, +                                   bool isCCReg)  {    assert(i < operands.size());    operands[i].InitializeReg(regNum, isCCReg); | 

