[www] Update link to analyzer's "Building a Checker in 24 hours" video

The video is now uploaded to YouTube.

llvm-svn: 326062
This commit is contained in:
Devin Coughlin 2018-02-26 00:39:25 +00:00
parent 0d4ad84aa2
commit c0ffd637b9
3 changed files with 4 additions and 4 deletions

View File

@ -800,7 +800,7 @@ Check for misuses of stream APIs:<div class=functions>
fopen<br> fopen<br>
fclose</div>(demo checker, the subject of the demo fclose</div>(demo checker, the subject of the demo
(<a href="http://llvm.org/devmtg/2012-11/Zaks-Rose-Checker24Hours.pdf">Slides</a> (<a href="http://llvm.org/devmtg/2012-11/Zaks-Rose-Checker24Hours.pdf">Slides</a>
,<a href="http://llvm.org/devmtg/2012-11/videos/Zaks-Rose-Checker24Hours.mp4">Video</a>) ,<a href="https://youtu.be/kdxlsP5QVPw">Video</a>)
by Anna Zaks and Jordan Rose presented at the <a href="http://llvm.org/devmtg/2012-11/"> by Anna Zaks and Jordan Rose presented at the <a href="http://llvm.org/devmtg/2012-11/">
2012 LLVM Developers' Meeting).</a></div></div></td> 2012 LLVM Developers' Meeting).</a></div></div></td>
<td><div class="exampleContainer expandable"> <td><div class="exampleContainer expandable">

View File

@ -23,7 +23,7 @@ relies on a set of checkers to implement the logic for detecting and
constructing specific bug reports. Anyone who is interested in implementing their own constructing specific bug reports. Anyone who is interested in implementing their own
checker, should check out the Building a Checker in 24 Hours talk checker, should check out the Building a Checker in 24 Hours talk
(<a href="http://llvm.org/devmtg/2012-11/Zaks-Rose-Checker24Hours.pdf">slides</a> (<a href="http://llvm.org/devmtg/2012-11/Zaks-Rose-Checker24Hours.pdf">slides</a>
<a href="http://llvm.org/devmtg/2012-11/videos/Zaks-Rose-Checker24Hours.mp4">video</a>) <a href="https://youtu.be/kdxlsP5QVPw">video</a>)
and refer to this page for additional information on writing a checker. The static analyzer is a and refer to this page for additional information on writing a checker. The static analyzer is a
part of the Clang project, so consult <a href="http://clang.llvm.org/hacking.html">Hacking on Clang</a> part of the Clang project, so consult <a href="http://clang.llvm.org/hacking.html">Hacking on Clang</a>
and <a href="http://llvm.org/docs/ProgrammersManual.html">LLVM Programmer's Manual</a> and <a href="http://llvm.org/docs/ProgrammersManual.html">LLVM Programmer's Manual</a>
@ -696,7 +696,7 @@ href="http://llvm.org/devmtg/2012-11">November 2012 LLVM Developer's
meeting</a>. Describes the construction of SimpleStreamChecker. <a meeting</a>. Describes the construction of SimpleStreamChecker. <a
href="http://llvm.org/devmtg/2012-11/Zaks-Rose-Checker24Hours.pdf">Slides</a> href="http://llvm.org/devmtg/2012-11/Zaks-Rose-Checker24Hours.pdf">Slides</a>
and <a and <a
href="http://llvm.org/devmtg/2012-11/videos/Zaks-Rose-Checker24Hours.mp4">video</a> href="https://youtu.be/kdxlsP5QVPw">video</a>
are available. are available.
</ul> </ul>

View File

@ -147,7 +147,7 @@ mailing list</a> to notify other members of the community.</p>
<p>A SimpleStreamChecker has been presented in the Building a Checker in 24 <p>A SimpleStreamChecker has been presented in the Building a Checker in 24
Hours talk Hours talk
(<a href="http://llvm.org/devmtg/2012-11/Zaks-Rose-Checker24Hours.pdf">slides</a> (<a href="http://llvm.org/devmtg/2012-11/Zaks-Rose-Checker24Hours.pdf">slides</a>
<a href="http://llvm.org/devmtg/2012-11/videos/Zaks-Rose-Checker24Hours.mp4">video</a>). <a href="https://youtu.be/kdxlsP5QVPw">video</a>).
We need to implement a production version of the checker with richer set of We need to implement a production version of the checker with richer set of
APIs and evaluate it by running on real codebases. APIs and evaluate it by running on real codebases.
<i>(Difficulty: Easy)</i></p> <i>(Difficulty: Easy)</i></p>