fit in 80 cols
authorChris Lattner <sabre@nondot.org>
Sat, 26 Jun 2010 23:26:22 +0000 (23:26 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 26 Jun 2010 23:26:22 +0000 (23:26 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106968 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/IRBuilder.h

index 1fd965d3e77345735cbbdb443e92d6977fb193e6..37f9d57a9175fa272a821458a10498ff694040e0 100644 (file)
@@ -624,8 +624,8 @@ public:
     return Insert(GetElementPtrInst::Create(Ptr, IdxBegin, IdxEnd), Name);
   }
   template<typename InputIterator>
-  Value *CreateInBoundsGEP(Value *Ptr, InputIterator IdxBegin, InputIterator IdxEnd,
-                           const Twine &Name = "") {
+  Value *CreateInBoundsGEP(Value *Ptr, InputIterator IdxBegin,
+                           InputIterator IdxEnd, const Twine &Name = "") {
     if (Constant *PC = dyn_cast<Constant>(Ptr)) {
       // Every index must be constant.
       InputIterator i;