Re: [clang-tools-extra] r256562 - [clang-tidy] Fix a use-after-free bug found by asan

2016-01-05 Thread Alexander Kornienko via cfe-commits
On Mon, Jan 4, 2016 at 7:39 PM, Kostya Serebryany wrote: > Nice! > is a fuzzer for clang-tidy possible/ > Should be no more difficult than clang-fuzzer. > desirable? > It might be useful to find crashes in clang-tidy earlier than we feed a ton of sources to it. Not sure how

Re: [clang-tools-extra] r256562 - [clang-tidy] Fix a use-after-free bug found by asan

2016-01-05 Thread Kostya Serebryany via cfe-commits
On Tue, Jan 5, 2016 at 9:01 AM, Alexander Kornienko wrote: > On Mon, Jan 4, 2016 at 7:39 PM, Kostya Serebryany wrote: > >> Nice! >> is a fuzzer for clang-tidy possible/ >> > > Should be no more difficult than clang-fuzzer. > Let's do it then? > > >>

Re: [clang-tools-extra] r256562 - [clang-tidy] Fix a use-after-free bug found by asan

2016-01-04 Thread Kostya Serebryany via cfe-commits
Nice! is a fuzzer for clang-tidy possible/desirable? similar to what we have for clang and clang-format (tools/clang-format/fuzzer, ./tools/clang-fuzzer) On Tue, Dec 29, 2015 at 8:14 AM, Alexander Kornienko via cfe-commits < cfe-commits@lists.llvm.org> wrote: > Author: alexfh > Date: Tue Dec 29

Re: [clang-tools-extra] r256562 - [clang-tidy] Fix a use-after-free bug found by asan

2015-12-29 Thread Alexander Kornienko via cfe-commits
On Tue, Dec 29, 2015 at 5:22 PM, Benjamin Kramer wrote: > On Tue, Dec 29, 2015 at 5:14 PM, Alexander Kornienko via cfe-commits > wrote: > > Author: alexfh > > Date: Tue Dec 29 10:14:38 2015 > > New Revision: 256562 > > > > URL:

[clang-tools-extra] r256562 - [clang-tidy] Fix a use-after-free bug found by asan

2015-12-29 Thread Alexander Kornienko via cfe-commits
Author: alexfh Date: Tue Dec 29 10:14:38 2015 New Revision: 256562 URL: http://llvm.org/viewvc/llvm-project?rev=256562=rev Log: [clang-tidy] Fix a use-after-free bug found by asan Modified: clang-tools-extra/trunk/clang-tidy/readability/SimplifyBooleanExprCheck.cpp Modified:

Re: [clang-tools-extra] r256562 - [clang-tidy] Fix a use-after-free bug found by asan

2015-12-29 Thread Benjamin Kramer via cfe-commits
On Tue, Dec 29, 2015 at 5:14 PM, Alexander Kornienko via cfe-commits wrote: > Author: alexfh > Date: Tue Dec 29 10:14:38 2015 > New Revision: 256562 > > URL: http://llvm.org/viewvc/llvm-project?rev=256562=rev > Log: > [clang-tidy] Fix a use-after-free bug found by asan