diff options
author | Daniel Dunbar <daniel@zuster.org> | 2008-09-19 23:18:44 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2008-09-19 23:18:44 +0000 |
commit | e43038ec3d0ef187fcdddf101ef653bbbdb1069a (patch) | |
tree | a0966498902f3fbd3bd260a418b893753863ee2e | |
parent | fb8a7fd7741e84b3fa1d5e18a42e223c8efc9d5e (diff) |
Add REPORTBUG marker to scan-build.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@56373 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-x | utils/scan-build | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/utils/scan-build b/utils/scan-build index 9f2780829a..c76441cde1 100755 --- a/utils/scan-build +++ b/utils/scan-build @@ -522,6 +522,7 @@ print OUT <<ENDTEXT; <td>Line</td> <td>Path Length</td> <td class="sorttable_nosort"></td> + <td class="sorttable_nosort"></td> </tr> ENDTEXT @@ -567,6 +568,9 @@ ENDTEXT # Emit the "View" link. print OUT " <td class=\"View\"><a href=\"$ReportFile#EndPath\">View</a></td>\n"; + # Emit REPORTBUG markers. + print OUT " <td class=\"ReportBug\"><!-- REPORTBUG id=\"$ReportFile\" --></td>\n"; + # End the row. print OUT "</tr>\n"; } |