diff options
author | Chris Lattner <sabre@nondot.org> | 2010-06-26 23:26:22 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-06-26 23:26:22 +0000 |
commit | ae925f5c1eb494785e1d96d2f36d94136186524d (patch) | |
tree | d8e80d38cb178d00919a65b47e2f10555f845226 /include/llvm/Support/IRBuilder.h | |
parent | 08189d625d9ac413807a01536423b83b2b49444c (diff) | |
download | external_llvm-ae925f5c1eb494785e1d96d2f36d94136186524d.tar.gz external_llvm-ae925f5c1eb494785e1d96d2f36d94136186524d.tar.bz2 external_llvm-ae925f5c1eb494785e1d96d2f36d94136186524d.zip |
fit in 80 cols
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106968 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/IRBuilder.h')
-rw-r--r-- | include/llvm/Support/IRBuilder.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Support/IRBuilder.h b/include/llvm/Support/IRBuilder.h index 1fd965d3e7..37f9d57a91 100644 --- a/include/llvm/Support/IRBuilder.h +++ b/include/llvm/Support/IRBuilder.h @@ -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; |