Typo fix.

llvm-svn: 60236
This commit is contained in:
Duncan Sands 2008-11-29 08:03:35 +00:00
parent 3be4b122d3
commit 4f96a92145
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}