We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
>=
>
1 parent 903a06f commit 0ee2201Copy full SHA for 0ee2201
lib/SILOptimizer/Transforms/PruneVTables.cpp
@@ -31,7 +31,7 @@ class PruneVTables : public SILModuleTransform {
31
LLVM_DEBUG(llvm::dbgs() << "PruneVTables inspecting table:\n";
32
vtable->print(llvm::dbgs()));
33
if (!M->isWholeModule() &&
34
- vtable->getClass()->getEffectiveAccess() >= AccessLevel::FilePrivate) {
+ vtable->getClass()->getEffectiveAccess() > AccessLevel::FilePrivate) {
35
LLVM_DEBUG(llvm::dbgs() << "Ignoring visible table: ";
36
37
return;
0 commit comments