From cfd5b7d18ba3c803c83fdadcf8472f755d5cda05 Mon Sep 17 00:00:00 2001 From: Matthijs Kooijman Date: Thu, 5 Jun 2008 07:26:15 +0000 Subject: [PATCH] Fix 80 column violations. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51981 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Instructions.h | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/include/llvm/Instructions.h b/include/llvm/Instructions.h index 66cdc392a7f..09aefb12763 100644 --- a/include/llvm/Instructions.h +++ b/include/llvm/Instructions.h @@ -379,7 +379,8 @@ static inline const Type *checkType(const Type *Ty) { /// class GetElementPtrInst : public Instruction { GetElementPtrInst(const GetElementPtrInst &GEPI); - void init(Value *Ptr, Value* const *Idx, unsigned NumIdx, const std::string &Name); + void init(Value *Ptr, Value* const *Idx, unsigned NumIdx, + const std::string &Name); void init(Value *Ptr, Value *Idx, const std::string &Name); template @@ -1456,7 +1457,8 @@ class ExtractValueInst : public Instruction { SmallVector Indices; ExtractValueInst(const ExtractValueInst &EVI); - void init(Value *Agg, const unsigned *Idx, unsigned NumIdx, const std::string &Name); + void init(Value *Agg, const unsigned *Idx, unsigned NumIdx, + const std::string &Name); void init(Value *Agg, unsigned Idx, const std::string &Name); template @@ -1663,7 +1665,8 @@ class InsertValueInst : public Instruction { void *operator new(size_t, unsigned); // Do not implement InsertValueInst(const InsertValueInst &IVI); - void init(Value *Agg, Value *Val, const unsigned *Idx, unsigned NumIdx, const std::string &Name); + void init(Value *Agg, Value *Val, const unsigned *Idx, unsigned NumIdx, + const std::string &Name); void init(Value *Agg, Value *Val, unsigned Idx, const std::string &Name); template @@ -1714,7 +1717,7 @@ public: } template - static InsertValueInst *Create(Value *Agg, Value *Val, InputIterator IdxBegin, + static InsertValueInst *Create(Value *Agg, Value *Val, InputIterator IdxBegin, InputIterator IdxEnd, const std::string &Name = "", Instruction *InsertBefore = 0) {