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
diff --git a/Driver/clang.cpp b/Driver/clang.cpp
index c6bcc14..7a2996a 100644
--- a/Driver/clang.cpp
+++ b/Driver/clang.cpp
@@ -135,10 +135,7 @@
              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 @@
     case EmitHTML:
       return CreateHTMLPrinter();
       
-    case HTMLTest:
-      return CreateHTMLTest();
-      
     case ParseCFGDump:
     case ParseCFGView:
       return CreateCFGDumper(ProgAction == ParseCFGView,