Added fixme.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49797 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/Driver/clang.cpp b/Driver/clang.cpp
index f6d5fe6..307e49b 100644
--- a/Driver/clang.cpp
+++ b/Driver/clang.cpp
@@ -1290,6 +1290,10 @@
TextDiagnostics* TextDiagClient = NULL;
if (!HTMLDiag.empty()) {
+
+ // FIXME: The HTMLDiagnosticClient uses the Preprocessor for
+ // (optional) syntax highlighting, but we don't have a preprocessor yet.
+ // Fix this dependency later.
DiagClient.reset(CreateHTMLDiagnosticClient(HTMLDiag, NULL));
}
else { // Use Text diagnostics.