diff options
Diffstat (limited to 'include/clang/CodeGen/CodeGenAction.h')
-rw-r--r-- | include/clang/CodeGen/CodeGenAction.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/clang/CodeGen/CodeGenAction.h b/include/clang/CodeGen/CodeGenAction.h index cecfcda461..b55effc6be 100644 --- a/include/clang/CodeGen/CodeGenAction.h +++ b/include/clang/CodeGen/CodeGenAction.h @@ -18,6 +18,7 @@ namespace llvm { } namespace clang { +class BackendConsumer; class CodeGenAction : public ASTFrontendAction { private: @@ -42,6 +43,8 @@ public: /// takeModule - Take the generated LLVM module, for use after the action has /// been run. The result may be null on failure. llvm::Module *takeModule(); + + BackendConsumer *BEConsumer; }; class EmitAssemblyAction : public CodeGenAction { |