<feed xmlns='http://www.w3.org/2005/Atom'>
<title>emscripten-fastcomp-clang/utils/analyzer, branch master</title>
<subtitle>emscripten clang</subtitle>
<id>https://git.amat.us/emscripten-fastcomp-clang/atom/utils/analyzer?h=master</id>
<link rel='self' href='https://git.amat.us/emscripten-fastcomp-clang/atom/utils/analyzer?h=master'/>
<link rel='alternate' type='text/html' href='https://git.amat.us/emscripten-fastcomp-clang/'/>
<updated>2013-04-05T17:55:07Z</updated>
<entry>
<title>[analyzer] Re-enable cplusplus.NewDelete (but not NewDeleteLeaks).</title>
<updated>2013-04-05T17:55:07Z</updated>
<author>
<name>Jordan Rose</name>
<email>jordan_rose@apple.com</email>
</author>
<published>2013-04-05T17:55:07Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/emscripten-fastcomp-clang/commit/?id=e449edc5bdace60f9d754c32abc5459bc7d94a14'/>
<id>urn:sha1:e449edc5bdace60f9d754c32abc5459bc7d94a14</id>
<content type='text'>
As mentioned in the previous commit message, the use-after-free and
double-free warnings for 'delete' are worth enabling even while the
leak warnings still have false positives.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@178891 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>[analyzer] Moving cplusplus.NewDelete to alpha.* for now.</title>
<updated>2013-04-02T05:59:24Z</updated>
<author>
<name>Anton Yartsev</name>
<email>anton.yartsev@gmail.com</email>
</author>
<published>2013-04-02T05:59:24Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/emscripten-fastcomp-clang/commit/?id=3d11708c491a96198ebfee49079ae458ed90eaf8'/>
<id>urn:sha1:3d11708c491a96198ebfee49079ae458ed90eaf8</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@178529 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>[analyzer] Adds cplusplus.NewDelete checker that check for memory leaks, double free, and use-after-free problems of memory managed by new/delete.</title>
<updated>2013-03-25T01:35:45Z</updated>
<author>
<name>Anton Yartsev</name>
<email>anton.yartsev@gmail.com</email>
</author>
<published>2013-03-25T01:35:45Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/emscripten-fastcomp-clang/commit/?id=2de19edab6001d2c17720d02fe0760b9b452192a'/>
<id>urn:sha1:2de19edab6001d2c17720d02fe0760b9b452192a</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@177849 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>[analyzer] CmpRuns.py: Accept single files as input.</title>
<updated>2013-03-23T01:21:26Z</updated>
<author>
<name>Jordan Rose</name>
<email>jordan_rose@apple.com</email>
</author>
<published>2013-03-23T01:21:26Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/emscripten-fastcomp-clang/commit/?id=e30024c96f88578fb7666d6d76977e4834127919'/>
<id>urn:sha1:e30024c96f88578fb7666d6d76977e4834127919</id>
<content type='text'>
This allows us to compare two direct invocations of the analyzer on a
single source file without having to wrap the output plists in their
own directories.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@177804 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>scan-build: Add a --keep-empty option for better testing.</title>
<updated>2013-01-24T23:07:59Z</updated>
<author>
<name>Jordan Rose</name>
<email>jordan_rose@apple.com</email>
</author>
<published>2013-01-24T23:07:59Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/emscripten-fastcomp-clang/commit/?id=33e9500784a6b8dc7f01ae5c85ebf0883fbc6662'/>
<id>urn:sha1:33e9500784a6b8dc7f01ae5c85ebf0883fbc6662</id>
<content type='text'>
SATestBuild expects to compare output directories for each invocation of
scan-build that it runs, but scan-build clears out empty directories by
default. We were coincidentally not getting that behavior until r173294.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@173383 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>[analyzer] SATestBuild.py: allow make builds to disable parallelization</title>
<updated>2012-11-26T19:59:57Z</updated>
<author>
<name>Jordan Rose</name>
<email>jordan_rose@apple.com</email>
</author>
<published>2012-11-26T19:59:57Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/emscripten-fastcomp-clang/commit/?id=7bd51ea64fd06b9a243faaacb0b15c168afe47a6'/>
<id>urn:sha1:7bd51ea64fd06b9a243faaacb0b15c168afe47a6</id>
<content type='text'>
Before, SATestBuild unilaterally added '-j&lt;n&gt;' to every project built with
'make'. Now, we check and see if there's a -j option already specified, which
allows a project to explicitly be marked '-j1'.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@168603 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>[analyzer] SATestBuild.py: fix broken string concatenation</title>
<updated>2012-11-16T17:41:21Z</updated>
<author>
<name>Jordan Rose</name>
<email>jordan_rose@apple.com</email>
</author>
<published>2012-11-16T17:41:21Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/emscripten-fastcomp-clang/commit/?id=58782bee56bf5e6ab42e6695af9ae5befe1fd479'/>
<id>urn:sha1:58782bee56bf5e6ab42e6695af9ae5befe1fd479</id>
<content type='text'>
This has been broken for a while, but the branch was never being taken.
(We were trying to do 'str + floatVal'; now we do 'str % intVal' and use
the '%d' format.)

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@168174 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>[analyzer] CmpRuns: move the clang_version info into the run (out of</title>
<updated>2012-11-15T22:42:44Z</updated>
<author>
<name>Anna Zaks</name>
<email>ganna@apple.com</email>
</author>
<published>2012-11-15T22:42:44Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/emscripten-fastcomp-clang/commit/?id=f0024960d5f9edc5728128b49cb758e689dd3746'/>
<id>urn:sha1:f0024960d5f9edc5728128b49cb758e689dd3746</id>
<content type='text'>
report)

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@168105 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>[analyzer] SATestBuild.py: correctly add -j option for projects using make.</title>
<updated>2012-11-15T22:03:53Z</updated>
<author>
<name>Jordan Rose</name>
<email>jordan_rose@apple.com</email>
</author>
<published>2012-11-15T22:03:53Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/emscripten-fastcomp-clang/commit/?id=f55a9e5e70aa08a5a4d3f3ad79487b3ad1d19b46'/>
<id>urn:sha1:f55a9e5e70aa08a5a4d3f3ad79487b3ad1d19b46</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@168099 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>[analyzer] Ensure that CmpRuns recursively walks the output directory.</title>
<updated>2012-11-14T21:32:16Z</updated>
<author>
<name>Anna Zaks</name>
<email>ganna@apple.com</email>
</author>
<published>2012-11-14T21:32:16Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/emscripten-fastcomp-clang/commit/?id=25691f67b22b3ad02a07e66209cad492357f532c'/>
<id>urn:sha1:25691f67b22b3ad02a07e66209cad492357f532c</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@167981 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
</feed>
