aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/CodeGen/CGClass.cpp
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2016-01-29 01:35:53 +0000
committerEric Christopher <echristo@gmail.com>2016-01-29 01:35:53 +0000
commitd160c50f6b0d45c3c1b87fc671b8a3331e22f2ec (patch)
tree702dbd481ddda451497cfe65d1b66fbcf469d3fb /clang/lib/CodeGen/CGClass.cpp
parente2c2461a6bf0b8ccbe7a2cf9021e16c3be51ca81 (diff)
downloadllvm-d160c50f6b0d45c3c1b87fc671b8a3331e22f2ec.zip
llvm-d160c50f6b0d45c3c1b87fc671b8a3331e22f2ec.tar.gz
llvm-d160c50f6b0d45c3c1b87fc671b8a3331e22f2ec.tar.bz2
Use a consistent spelling for vtables.
llvm-svn: 259137
Diffstat (limited to 'clang/lib/CodeGen/CGClass.cpp')
-rw-r--r--clang/lib/CodeGen/CGClass.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGClass.cpp b/clang/lib/CodeGen/CGClass.cpp
index a13a7f9..0853d6a 100644
--- a/clang/lib/CodeGen/CGClass.cpp
+++ b/clang/lib/CodeGen/CGClass.cpp
@@ -95,7 +95,7 @@ CodeGenModule::getDynamicOffsetAlignment(CharUnits actualBaseAlign,
// unless we someday add some sort of attribute to change the
// assumed alignment of 'this'. So our goal here is pretty much
// just to allow the user to explicitly say that a pointer is
- // under-aligned and then safely access its fields and v-tables.
+ // under-aligned and then safely access its fields and vtables.
if (actualBaseAlign >= expectedBaseAlign) {
return expectedTargetAlign;
}