From: Ken Dyck Date: Sun, 27 Mar 2011 19:19:52 +0000 (+0000) Subject: Remove a fixed FIXME comment (the base offset has already been converted to X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9198e399121274481e7383669633bb955e06045c;p=clang Remove a fixed FIXME comment (the base offset has already been converted to CharUnits). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@128386 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/CGVTables.cpp b/lib/CodeGen/CGVTables.cpp index 8586676ad2..d0b868328b 100644 --- a/lib/CodeGen/CGVTables.cpp +++ b/lib/CodeGen/CGVTables.cpp @@ -2130,7 +2130,6 @@ void VTableBuilder::dumpLayout(llvm::raw_ostream& Out) { const BaseSubobject &Base = AddressPointsByIndex.find(NextIndex)->second; - // FIXME: Instead of dividing by 8, we should be using CharUnits. Out << " -- (" << Base.getBase()->getQualifiedNameAsString(); Out << ", " << Base.getBaseOffset().getQuantity(); Out << ") vtable address --\n";