diff options
| author | Chandler Carruth <chandlerc@gmail.com> | 2010-02-26 08:51:12 +0000 |
|---|---|---|
| committer | Chandler Carruth <chandlerc@gmail.com> | 2010-02-26 08:51:12 +0000 |
| commit | e750212f8c1b0613fb019b627d96bca391eb72dc (patch) | |
| tree | 960faff9aad77816f042dd48c565cc4c92b3b524 /clang | |
| parent | ea5297baa08520b425621bc52e9b8c22c034c1eb (diff) | |
| download | bcm5719-llvm-e750212f8c1b0613fb019b627d96bca391eb72dc.tar.gz bcm5719-llvm-e750212f8c1b0613fb019b627d96bca391eb72dc.zip | |
Make the destructor public. ddunbar, lemme know if you'd prefer a different
fix, just trying to get the build bots happy again.
llvm-svn: 97223
Diffstat (limited to 'clang')
| -rw-r--r-- | clang/include/clang/Frontend/CodeGenAction.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/include/clang/Frontend/CodeGenAction.h b/clang/include/clang/Frontend/CodeGenAction.h index 642e02a2f70..a1e3c42075b 100644 --- a/clang/include/clang/Frontend/CodeGenAction.h +++ b/clang/include/clang/Frontend/CodeGenAction.h @@ -23,7 +23,6 @@ private: protected: CodeGenAction(unsigned _Act); - ~CodeGenAction(); virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI, llvm::StringRef InFile); @@ -31,6 +30,8 @@ protected: virtual void EndSourceFileAction(); public: + ~CodeGenAction(); + /// takeModule - Take the generated LLVM module, for use after the action has /// been run. The result may be null on failure. llvm::Module *takeModule(); |

