summaryrefslogtreecommitdiffstats
path: root/clang-tools-extra/clangd/fuzzer
Commit message (Collapse)AuthorAgeFilesLines
* [clang-tools-extra] [cmake] Link against libclang-cpp whenever possibleMichal Gorny2019-10-041-2/+5
| | | | | | | | | Use clang_target_link_libraries() in order to support linking against libclang-cpp instead of static libraries. Differential Revision: https://reviews.llvm.org/D68448 llvm-svn: 373786
* Remove \brief commands from doxygen comments.Dmitri Gribenko2019-08-221-1/+1
| | | | | | | | | | | | | | | | | | | | | | | Summary: We've been running doxygen with the autobrief option for a couple of years now. This makes the \brief markers into our comments redundant. Since they are a visual distraction and we don't want to encourage more \brief markers in new code either, this patch removes them all. Patch produced by for i in $(git grep -l '\\brief'); do perl -pi -e 's/\\brief //g' $i & done [This is analogous to LLVM r331272 and CFE r331834] Subscribers: srhines, nemanjai, javed.absar, kbarton, MaskRay, jkorous, arphaman, jfb, kadircet, jsji, cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D66578 llvm-svn: 369643
* clangd-fuzzer: repair the buildSaleem Abdulrasool2019-04-101-1/+2
| | | | | | The inclusion of private headers of clangd percolates into the fuzzer. llvm-svn: 358127
* Fix clangd-fuzzer buildNico Weber2019-04-042-2/+6
| | | | | | | | | r357102 made clangd-fuzzer no longer compile, but before r357654 / r357694 we didn't notice. Fix the compile. Also add a dep on FuzzMutate which I forgot to do in r357654. llvm-svn: 357696
* Make clangd-fuzzer use the normal add_llvm_fuzzer() machineryNico Weber2019-04-043-8/+22
| | | | | | | | | This allows building it even if no fuzzer is enabled. (Sadly, it only builds on Linux at the moment.) Differential Revision: https://reviews.llvm.org/D60201 llvm-svn: 357654
* [clangd] Use delimited style to make life easier for the fuzzerSam McCall2019-02-011-1/+1
| | | | llvm-svn: 352863
* [clangd] Unbreak fuzzer targetSam McCall2019-02-011-1/+3
| | | | llvm-svn: 352857
* Update the file headers across all of the LLVM projects in the monorepoChandler Carruth2019-01-191-4/+3
| | | | | | | | | | | | | | | | | to reflect the new license. We understand that people may be surprised that we're moving the header entirely to discuss the new license. We checked this carefully with the Foundation's lawyer and we believe this is the correct approach. Essentially, all code in the project is now made available by the LLVM project under our new license, so you will see that the license headers include that license only. Some of our contributors have contributed code under our old license, and accordingly, we have retained a copy of our old license notice in the top-level files in each project and repository. llvm-svn: 351636
* [clangd] Include <cstdio> instead of <stdio.h>. NFCIlya Biryukov2019-01-071-1/+1
| | | | | | This fixes the only clang-tidy check currently enabled by clangd. llvm-svn: 350540
* [clangd] Make ClangdFuzzer compile again.Benjamin Kramer2018-11-111-8/+11
| | | | llvm-svn: 346608
* [clangd] Fix fuzzer build.Matt Morehouse2018-08-041-1/+2
| | | | llvm-svn: 338947
* [clangd] Guard fuzzer against empty inputs.Benjamin Kramer2018-07-241-0/+3
| | | | llvm-svn: 337860
* [clangd] Unbreak fuzzer build.Benjamin Kramer2018-07-221-1/+2
| | | | llvm-svn: 337655
* [clangd] Fix fuzzer after r333993Sam McCall2018-06-081-3/+3
| | | | llvm-svn: 334315
* [clangd-fuzzer] Update ClangdLSPServer constructor call.Matt Morehouse2018-03-091-4/+3
| | | | | | Build was broken by r326719. llvm-svn: 327184
* [clangd-fuzzer] Update ClangdLSPServer constructor call.Matt Morehouse2017-12-201-1/+2
| | | | | | Build was broken by r321092. llvm-svn: 321226
* [clangd] clang-format the code. NFCIlya Biryukov2017-12-121-1/+1
| | | | llvm-svn: 320476
* [clangd-fuzzer] Update contruction of LSPServer.Matt Morehouse2017-12-071-1/+4
| | | | | | | The constructor for ClangdLSPServer changed in r318412 and r318925, breaking the clangd-fuzzer build. llvm-svn: 320074
* [CMake] Use PRIVATE in target_link_libraries for fuzzers.Matt Morehouse2017-12-061-0/+1
| | | | | | Several fuzzers were missed by r319840. llvm-svn: 319948
* [clangd] Don't use /// for non-doxygen comments.Benjamin Kramer2017-10-261-5/+1
| | | | llvm-svn: 316650
* [clangd] Add a simple fuzzer. It crashes a lot :)Benjamin Kramer2017-10-262-0/+57
llvm-svn: 316649
OpenPOWER on IntegriCloud