[llvm-commits] [llvm] r51981 - /llvm/trunk/include/llvm/Instructions.h
Matthijs Kooijman
matthijs at stdin.nl
Thu Jun 5 00:26:15 PDT 2008
Author: matthijs
Date: Thu Jun 5 02:26:15 2008
New Revision: 51981
URL: http://llvm.org/viewvc/llvm-project?rev=51981&view=rev
Log:
Fix 80 column violations.
Modified:
llvm/trunk/include/llvm/Instructions.h
Modified: llvm/trunk/include/llvm/Instructions.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Instructions.h?rev=51981&r1=51980&r2=51981&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Instructions.h (original)
+++ llvm/trunk/include/llvm/Instructions.h Thu Jun 5 02:26:15 2008
@@ -379,7 +379,8 @@
///
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<typename InputIterator>
@@ -1456,7 +1457,8 @@
SmallVector<unsigned, 4> 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<typename InputIterator>
@@ -1663,7 +1665,8 @@
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<typename InputIterator>
@@ -1714,7 +1717,7 @@
}
template<typename InputIterator>
- 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) {
More information about the llvm-commits
mailing list