diff options
| author | Ted Kremenek <kremenek@apple.com> | 2008-04-16 16:53:18 +0000 |
|---|---|---|
| committer | Ted Kremenek <kremenek@apple.com> | 2008-04-16 16:53:18 +0000 |
| commit | 2e4d0ecaa3bbcdf14b9755914772737265f782e9 (patch) | |
| tree | 0fe4e288f2eab23f7e7d7a8b0e20c5eb31ca0265 | |
| parent | f2e6fcf3bfd84460ec2c22c2c05f4e8b9c58017e (diff) | |
| download | bcm5719-llvm-2e4d0ecaa3bbcdf14b9755914772737265f782e9.tar.gz bcm5719-llvm-2e4d0ecaa3bbcdf14b9755914772737265f782e9.zip | |
Added fixme.
llvm-svn: 49797
| -rw-r--r-- | clang/Driver/clang.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/Driver/clang.cpp b/clang/Driver/clang.cpp index f6d5fe691a5..307e49b4cb9 100644 --- a/clang/Driver/clang.cpp +++ b/clang/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. |

