summaryrefslogtreecommitdiff
path: root/lib/CodeGen
diff options
context:
space:
mode:
authorAlp Toker <alp@nuanti.com>2014-06-16 14:23:44 +0000
committerAlp Toker <alp@nuanti.com>2014-06-16 14:23:44 +0000
commitd450c7c91bf124a38f0c860f3085ea7bd631bd2b (patch)
treeba2397b9e763041f0ef037e4ba4724bba309eead /lib/CodeGen
parent0860a908c0094e3d9d780edba99de486daa77963 (diff)
downloadclang-d450c7c91bf124a38f0c860f3085ea7bd631bd2b.tar.gz
clang-d450c7c91bf124a38f0c860f3085ea7bd631bd2b.tar.bz2
clang-d450c7c91bf124a38f0c860f3085ea7bd631bd2b.tar.xz
Fix typos
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@211025 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r--lib/CodeGen/CGExprCXX.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CGExprCXX.cpp b/lib/CodeGen/CGExprCXX.cpp
index 268f4aabfd..394ba1d8f7 100644
--- a/lib/CodeGen/CGExprCXX.cpp
+++ b/lib/CodeGen/CGExprCXX.cpp
@@ -1913,7 +1913,7 @@ MSDynamicCastBuilder::MSDynamicCastBuilder(CodeGenFunction &CGF,
SrcTy = IsPtrCast ? SrcTy->castAs<PointerType>()->getPointeeType() : SrcTy;
SrcDecl = SrcTy->getAsCXXRecordDecl();
// If we don't need a base adjustment, we don't need a SrcDecl so clear it
- // here. Later we use the existance of the SrcDecl to determine the need for
+ // here. Later we use the existence of the SrcDecl to determine the need for
// a base adjustment.
if (CGF.getContext().getASTRecordLayout(SrcDecl).hasExtendableVFPtr())
SrcDecl = nullptr;