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 c298f71 commit 9e2eb95Copy full SHA for 9e2eb95
clang/unittests/Frontend/NoAlterCodeGenActionTest.cpp
@@ -52,11 +52,10 @@ class ASTCheckerConsumer : public ASTConsumer {
52
}
53
};
54
55
-class TestCodeGenAction : public EmitLLVMAction {
+class TestCodeGenAction : public EmitLLVMOnlyAction {
56
public:
57
- using Base = EmitLLVMAction;
58
- TestCodeGenAction(llvm::LLVMContext *_VMContext = nullptr)
59
- : EmitLLVMAction(_VMContext) {}
+ using Base = EmitLLVMOnlyAction;
+ using Base::Base;
60
61
std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
62
StringRef InFile) override {
0 commit comments