summaryrefslogtreecommitdiff
path: root/include/llvm/IR
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2014-02-26 17:05:38 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2014-02-26 17:05:38 +0000
commitf985aecb027cd51438851358235b27cd8c72340b (patch)
treefbe7854e05c7703a614bd03828de5965d3567834 /include/llvm/IR
parentc4bdb93d6a4d8eb40584554e0cc4fc3e3732f707 (diff)
downloadllvm-f985aecb027cd51438851358235b27cd8c72340b.tar.gz
llvm-f985aecb027cd51438851358235b27cd8c72340b.tar.bz2
llvm-f985aecb027cd51438851358235b27cd8c72340b.tar.xz
Fix typo. Thanks to Roman Divacky for noticing it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202277 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/IR')
-rw-r--r--include/llvm/IR/DataLayout.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/llvm/IR/DataLayout.h b/include/llvm/IR/DataLayout.h
index cfed302e65..d32b8402d6 100644
--- a/include/llvm/IR/DataLayout.h
+++ b/include/llvm/IR/DataLayout.h
@@ -118,11 +118,12 @@ private:
typedef SmallVector<PointerAlignElem, 8> PointersTy;
PointersTy Pointers;
- PointersTy::const_iterator findPoiterLowerBound(uint32_t AddressSpace) const {
- return const_cast<DataLayout *>(this)->findPoiterLowerBound(AddressSpace);
+ PointersTy::const_iterator
+ findPointerLowerBound(uint32_t AddressSpace) const {
+ return const_cast<DataLayout *>(this)->findPointerLowerBound(AddressSpace);
}
- PointersTy::iterator findPoiterLowerBound(uint32_t AddressSpace);
+ PointersTy::iterator findPointerLowerBound(uint32_t AddressSpace);
/// InvalidAlignmentElem - This member is a signal that a requested alignment
/// type and bit width were not found in the SmallVector.