fit in 80 cols

llvm-svn: 106968
This commit is contained in:
Chris Lattner 2010-06-26 23:26:22 +00:00
parent 726b3d09cd
commit 8e17fa098e
1 changed files with 2 additions and 2 deletions

View 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;