aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2011-12-06 19:26:57 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2011-12-06 19:26:57 +0000
commitb80a3869b419c94ad85d2a39041c59100691bb3e (patch)
tree5756a641fbf012e9d158231c5329cda2bab25c6b
parent7b5f1013c5b7f541dc1fae7fc43189377874eabb (diff)
Remove unused member to appease valgrind.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@145956 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/Frontend/FrontendActions.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/include/clang/Frontend/FrontendActions.h b/include/clang/Frontend/FrontendActions.h
index c2bdc746ea..c41d40c8b6 100644
--- a/include/clang/Frontend/FrontendActions.h
+++ b/include/clang/Frontend/FrontendActions.h
@@ -69,14 +69,12 @@ protected:
};
class GeneratePCHAction : public ASTFrontendAction {
- bool MakeModule;
-
protected:
virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
StringRef InFile);
- virtual TranslationUnitKind getTranslationUnitKind() {
- return MakeModule? TU_Module : TU_Prefix;
+ virtual TranslationUnitKind getTranslationUnitKind() {
+ return TU_Prefix;
}
virtual bool hasASTFileSupport() const { return false; }