Output directory as well as file name.
llvm-svn: 48870
diff --git a/clang/Driver/HTMLDiagnostics.cpp b/clang/Driver/HTMLDiagnostics.cpp
index 6583064..65dd17c 100644
--- a/clang/Driver/HTMLDiagnostics.cpp
+++ b/clang/Driver/HTMLDiagnostics.cpp
@@ -117,7 +117,8 @@
std::ostringstream os;
const FileEntry* Entry = SMgr.getFileEntryForID(FileID);
- os << "<h1>" << Entry->getName() << "</h1>\n";
+ os << "<h1>" << Entry->getDir()->getName() << "/"
+ << Entry->getName() << "</h1>\n";
R.InsertStrBefore(SourceLocation::getFileLoc(FileID, 0), os.str());
}