aboutsummaryrefslogtreecommitdiff
path: root/Driver/clang.cpp
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2008-04-16 04:38:45 +0000
committerTed Kremenek <kremenek@apple.com>2008-04-16 04:38:45 +0000
commitfdbe6799cae249c8b29cb7f7d4032d2f2468df06 (patch)
treea1a514bc54e41bb381a2ce6f8d55341032bdd823 /Driver/clang.cpp
parent8570f0b0fde7ca812f8d37f52305f3df4dd2ce01 (diff)
Remove "--html-test" driver option and its corresponding code; all of this
functionality has been migrated into "--emit-html" and "--html-diags". git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49776 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Driver/clang.cpp')
-rw-r--r--Driver/clang.cpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/Driver/clang.cpp b/Driver/clang.cpp
index c6bcc14cad..7a2996a309 100644
--- a/Driver/clang.cpp
+++ b/Driver/clang.cpp
@@ -135,10 +135,7 @@ ProgAction(llvm::cl::desc("Choose output type:"), llvm::cl::ZeroOrMore,
clEnumValN(SerializeAST, "serialize",
"Build ASTs and emit .ast file"),
clEnumValN(RewriteObjC, "rewrite-objc",
- "Playground for the code rewriter"),
- clEnumValN(HTMLTest, "html-test",
- "Playground for the HTML displayer"),
-
+ "Playground for the code rewriter"),
clEnumValEnd));
@@ -1051,9 +1048,6 @@ static ASTConsumer* CreateASTConsumer(const std::string& InFile,
case EmitHTML:
return CreateHTMLPrinter();
- case HTMLTest:
- return CreateHTMLTest();
-
case ParseCFGDump:
case ParseCFGView:
return CreateCFGDumper(ProgAction == ParseCFGView,