From: Nico Weber Date: Sat, 29 Nov 2014 23:57:35 +0000 (+0000) Subject: Fix typo. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4fcdac559f847711d58aee573bb4f9f1c159e4c3;p=clang Fix typo. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@222964 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AST/VTableBuilder.cpp b/lib/AST/VTableBuilder.cpp index d8723b3aee..ddb1f057ac 100644 --- a/lib/AST/VTableBuilder.cpp +++ b/lib/AST/VTableBuilder.cpp @@ -2676,7 +2676,7 @@ static bool BaseInSet(const CXXBaseSpecifier *Specifier, // In this hierarchy, f() belongs to the vftable of A, so B::f() expects // "this" parameter to point at the A subobject, which is B+4. // In the B::f() prologue, it adjusts "this" back to B by subtracting 4, -// peformed as a *static* adjustment. +// performed as a *static* adjustment. // // Interesting thing happens when we alter the relative placement of A and B // subobjects in a class: