summaryrefslogtreecommitdiff
path: root/include/llvm/ADT/PointerIntPair.h
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2008-11-29 08:03:35 +0000
committerDuncan Sands <baldrick@free.fr>2008-11-29 08:03:35 +0000
commit3f7dba7b1738bd433a1dea0142e0844a106b782a (patch)
tree282d520e7fc3b6673c862143ac87011fec35dbc2 /include/llvm/ADT/PointerIntPair.h
parent5391a1d8046396fb4dd005b1910973789f5427f4 (diff)
downloadllvm-3f7dba7b1738bd433a1dea0142e0844a106b782a.tar.gz
llvm-3f7dba7b1738bd433a1dea0142e0844a106b782a.tar.bz2
llvm-3f7dba7b1738bd433a1dea0142e0844a106b782a.tar.xz
Typo fix.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60236 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ADT/PointerIntPair.h')
-rw-r--r--include/llvm/ADT/PointerIntPair.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ADT/PointerIntPair.h b/include/llvm/ADT/PointerIntPair.h
index f4518f0f2c..773dea49c2 100644
--- a/include/llvm/ADT/PointerIntPair.h
+++ b/include/llvm/ADT/PointerIntPair.h
@@ -48,7 +48,7 @@ public:
void setPointer(PointerTy Ptr) {
intptr_t PtrVal = reinterpret_cast<intptr_t>(Ptr);
assert((PtrVal & (1 << IntBits)-1) == 0 &&
- "Pointer is no sufficiently aligned");
+ "Pointer is not sufficiently aligned");
Value = PtrVal | (intptr_t)getInt();
}