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 bb03cdc commit 0c7853dCopy full SHA for 0c7853d
llvm/lib/ExecutionEngine/Orc/ExecutionUtils.cpp
@@ -133,10 +133,8 @@ void CtorDtorRunner::add(iterator_range<CtorDtorIterator> CtorDtors) {
133
CtorDtor.Func->setVisibility(GlobalValue::HiddenVisibility);
134
}
135
136
- if (CtorDtor.Data && cast<GlobalValue>(CtorDtor.Data)->isDeclaration()) {
137
- dbgs() << " Skipping because why now?\n";
+ if (CtorDtor.Data && cast<GlobalValue>(CtorDtor.Data)->isDeclaration())
138
continue;
139
- }
140
141
CtorDtorsByPriority[CtorDtor.Priority].push_back(
142
Mangle(CtorDtor.Func->getName()));
0 commit comments