aboutsummaryrefslogtreecommitdiff
path: root/Driver/clang.cpp
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2008-04-16 16:53:18 +0000
committerTed Kremenek <kremenek@apple.com>2008-04-16 16:53:18 +0000
commita760f5f7dc34145aece49b4acc5d65bb63e7941b (patch)
treec56bcd5735c760646221bad9a987ccb3f3e45580 /Driver/clang.cpp
parent47abe7690491f28da5978225801ae146810bd388 (diff)
Added fixme.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49797 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Driver/clang.cpp')
-rw-r--r--Driver/clang.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/Driver/clang.cpp b/Driver/clang.cpp
index f6d5fe691a..307e49b4cb 100644
--- a/Driver/clang.cpp
+++ b/Driver/clang.cpp
@@ -1290,6 +1290,10 @@ int main(int argc, char **argv) {
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.