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 b8c9293 commit 982c547Copy full SHA for 982c547
clang/lib/CodeGen/LinkInModulesPass.cpp
@@ -20,8 +20,7 @@
20
21
using namespace llvm;
22
23
-LinkInModulesPass::LinkInModulesPass(clang::BackendConsumer *BC) : BC(BC),
24
- ShouldLinkFiles(ShouldLinkFiles) {}
+LinkInModulesPass::LinkInModulesPass(clang::BackendConsumer *BC) : BC(BC) {}
25
26
PreservedAnalyses LinkInModulesPass::run(Module &M, ModuleAnalysisManager &AM) {
27
if (!BC)
clang/lib/CodeGen/LinkInModulesPass.h
@@ -28,7 +28,6 @@ class Pass;
28
/// for use with the legacy pass manager.
29
class LinkInModulesPass : public PassInfoMixin<LinkInModulesPass> {
30
clang::BackendConsumer *BC;
31
- bool ShouldLinkFiles;
32
33
public:
34
LinkInModulesPass(clang::BackendConsumer *BC);
0 commit comments