[PATCH] D18278: llvm-cov HTML Generation
Harlan Haskins via llvm-commits
llvm-commits at lists.llvm.org
Sun Jul 17 14:03:25 PDT 2016
harlanhaskins added inline comments.
================
Comment at: llvm/trunk/tools/llvm-cov/SourceCoverageViewHTML.cpp:405
@@ +404,3 @@
+ unsigned LineNo) {
+ OS << tag("td", tag("pre", utostr(uint64_t(LineNo))), "line-number");
+}
----------------
Any chance we can wrap this in an anchor, a la:
`<a name="L{{line-number}}"></a>`
This would be very useful for linking within the files.
Repository:
rL LLVM
https://reviews.llvm.org/D18278
More information about the llvm-commits
mailing list