diff options
author | Gabor Greif <ggreif@gmail.com> | 2008-05-15 10:04:30 +0000 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2008-05-15 10:04:30 +0000 |
commit | b1dbcd886a4b5597a839f299054b78b33fb2d6df (patch) | |
tree | ad561cfaa4f194770a4167e80e26ec2bbb99f956 /lib/VMCore/Constants.cpp | |
parent | 4054ae0b250bf1527646f96cf46f95caa3651129 (diff) |
Fix a bunch of 80col violations that arose from the Create API change. Tweak makefile targets to find these better.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51143 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/Constants.cpp')
-rw-r--r-- | lib/VMCore/Constants.cpp | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/lib/VMCore/Constants.cpp b/lib/VMCore/Constants.cpp index b327a6a855..0f7ca0aaa0 100644 --- a/lib/VMCore/Constants.cpp +++ b/lib/VMCore/Constants.cpp @@ -539,9 +539,11 @@ class VISIBILITY_HIDDEN GetElementPtrConstantExpr : public ConstantExpr { GetElementPtrConstantExpr(Constant *C, const std::vector<Constant*> &IdxList, const Type *DestTy); public: - static GetElementPtrConstantExpr *Create(Constant *C, const std::vector<Constant*> &IdxList, + static GetElementPtrConstantExpr *Create(Constant *C, + const std::vector<Constant*>&IdxList, const Type *DestTy) { - return new(IdxList.size() + 1) GetElementPtrConstantExpr(C, IdxList, DestTy); + return new(IdxList.size() + 1) + GetElementPtrConstantExpr(C, IdxList, DestTy); } /// Transparently provide more efficient getOperand methods. DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value); @@ -1973,8 +1975,9 @@ Constant *ConstantExpr::getSelectTy(const Type *ReqTy, Constant *C, Constant *ConstantExpr::getGetElementPtrTy(const Type *ReqTy, Constant *C, Value* const *Idxs, unsigned NumIdx) { - assert(GetElementPtrInst::getIndexedType(C->getType(), Idxs, Idxs+NumIdx, true) && - "GEP indices invalid!"); + assert(GetElementPtrInst::getIndexedType(C->getType(), + Idxs, Idxs+NumIdx, true) + && "GEP indices invalid!"); if (Constant *FC = ConstantFoldGetElementPtr(C, (Constant**)Idxs, NumIdx)) return FC; // Fold a few common cases... |