<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in ExampleClangProtoFuzzer.cpp</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>64226b2d - [clang-fuzzer] Update proto fuzzer example for r375453.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/tools/clang-fuzzer/ExampleClangProtoFuzzer.cpp#64226b2d</link>
        <description>[clang-fuzzer] Update proto fuzzer example for r375453.llvm-svn: 375487

            List of files:
            /llvm-project-15.0.7/clang/tools/clang-fuzzer/ExampleClangProtoFuzzer.cpp</description>
        <pubDate>Tue, 22 Oct 2019 07:51:37 +0000</pubDate>
        <dc:creator>Benjamin Kramer &lt;benny.kra@googlemail.com&gt;</dc:creator>
    </item>
<item>
        <title>2946cd70 - Update the file headers across all of the LLVM projects in the monorepo</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/tools/clang-fuzzer/ExampleClangProtoFuzzer.cpp#2946cd70</link>
        <description>Update the file headers across all of the LLVM projects in the monorepoto reflect the new license.We understand that people may be surprised that we&apos;re moving the headerentirely to discuss the new license. We checked this carefully with theFoundation&apos;s lawyer and we believe this is the correct approach.Essentially, all code in the project is now made available by the LLVMproject under our new license, so you will see that the license headersinclude that license only. Some of our contributors have contributedcode under our old license, and accordingly, we have retained a copy ofour old license notice in the top-level files in each project andrepository.llvm-svn: 351636

            List of files:
            /llvm-project-15.0.7/clang/tools/clang-fuzzer/ExampleClangProtoFuzzer.cpp</description>
        <pubDate>Sat, 19 Jan 2019 08:50:56 +0000</pubDate>
        <dc:creator>Chandler Carruth &lt;chandlerc@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>293c2691 - [clang-proto-fuzzer] Refactored LLVMFuzzerInitialize into its own file.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/tools/clang-fuzzer/ExampleClangProtoFuzzer.cpp#293c2691</link>
        <description>[clang-proto-fuzzer] Refactored LLVMFuzzerInitialize into its own file.Copied and renamed some files in preparation for new loop-proto-fuzzer.Patch By: emmettneymanDifferential Revision: https://reviews.llvm.org/D47666llvm-svn: 333969

            List of files:
            /llvm-project-15.0.7/clang/tools/clang-fuzzer/ExampleClangProtoFuzzer.cpp</description>
        <pubDate>Tue, 05 Jun 2018 00:11:41 +0000</pubDate>
        <dc:creator>Matt Morehouse &lt;mascasa@google.com&gt;</dc:creator>
    </item>
<item>
        <title>9fc8faf9 - Remove \brief commands from doxygen comments.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/tools/clang-fuzzer/ExampleClangProtoFuzzer.cpp#9fc8faf9</link>
        <description>Remove \brief commands from doxygen comments.This is similar to the LLVM change https://reviews.llvm.org/D46290.We&apos;ve been running doxygen with the autobrief option for a couple ofyears now. This makes the \brief markers into our commentsredundant. Since they are a visual distraction and we don&apos;t want toencourage more \brief markers in new code either, this patch removesthem all.Patch produced byfor i in $(git grep -l &apos;\@brief&apos;); do perl -pi -e &apos;s/\@brief //g&apos; $i &amp; donefor i in $(git grep -l &apos;\\brief&apos;); do perl -pi -e &apos;s/\\brief //g&apos; $i &amp; doneDifferential Revision: https://reviews.llvm.org/D46320llvm-svn: 331834

            List of files:
            /llvm-project-15.0.7/clang/tools/clang-fuzzer/ExampleClangProtoFuzzer.cpp</description>
        <pubDate>Wed, 09 May 2018 01:00:01 +0000</pubDate>
        <dc:creator>Adrian Prantl &lt;aprantl@apple.com&gt;</dc:creator>
    </item>
<item>
        <title>6178cfaf - [clang-proto-fuzzer] Allow user-specified compiler arguments.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/tools/clang-fuzzer/ExampleClangProtoFuzzer.cpp#6178cfaf</link>
        <description>[clang-proto-fuzzer] Allow user-specified compiler arguments.Summary:Arguments can be specified after -ignore_remaining_args=1 to modifythe compiler invocation.  For example, the following command-linewill fuzz LLVM with a custom optimization level and target triple:  clang-proto-fuzzer CORPUS/ -ignore_remaining_args -O3 \      -triple arm64-apple-ios9Reviewers: vitalybuka, kccReviewed By: vitalybukaSubscribers: aemerson, cfe-commits, kristof.beylsDifferential Revision: https://reviews.llvm.org/D36882llvm-svn: 311185

            List of files:
            /llvm-project-15.0.7/clang/tools/clang-fuzzer/ExampleClangProtoFuzzer.cpp</description>
        <pubDate>Fri, 18 Aug 2017 18:34:39 +0000</pubDate>
        <dc:creator>Matt Morehouse &lt;mascasa@google.com&gt;</dc:creator>
    </item>
<item>
        <title>f051f5d1 - Integrate Kostya&apos;s clang-proto-fuzzer with LLVM.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/tools/clang-fuzzer/ExampleClangProtoFuzzer.cpp#f051f5d1</link>
        <description>Integrate Kostya&apos;s clang-proto-fuzzer with LLVM.Summary:The clang-proto-fuzzer models a subset of C++ as a protobuf anduses libprotobuf-mutator to generate interesting mutations of C++programs.  Clang-proto-fuzzer has already found several bugs inClang (e.g., https://bugs.llvm.org/show_bug.cgi?id=33747,https://bugs.llvm.org/show_bug.cgi?id=33749).As with clang-fuzzer, clang-proto-fuzzer requires the followingcmake flags:- CMAKE_C_COMPILER=clang- CMAKE_CXX_COMPILER=clang++- LLVM_USE_SANITIZE_COVERAGE=YES  // needed for libFuzzer- LLVM_USE_SANITIZER=Address  // needed for libFuzzerIn addition, clang-proto-fuzzer requires:- CLANG_ENABLE_PROTO_FUZZER=ONclang-proto-fuzzer also requires the following dependencies:- binutils  // needed for libprotobuf-mutator- liblzma-dev  // needed for libprotobuf-mutator- libz-dev  // needed for libprotobuf-mutator- docbook2x  // needed for libprotobuf-mutator- Recent version of protobuf [3.3.0 is known to work]A working version of libprotobuf-mutator will automatically bedownloaded and built as an external project.Implementation of clang-proto-fuzzer provided by KostyaSerebryany.https://bugs.llvm.org/show_bug.cgi?id=33829Reviewers: kcc, vitalybuka, bognerReviewed By: kcc, vitalybukaSubscribers: thakis, mgorny, cfe-commitsDifferential Revision: https://reviews.llvm.org/D36324llvm-svn: 310408

            List of files:
            /llvm-project-15.0.7/clang/tools/clang-fuzzer/ExampleClangProtoFuzzer.cpp</description>
        <pubDate>Tue, 08 Aug 2017 20:15:04 +0000</pubDate>
        <dc:creator>Matt Morehouse &lt;mascasa@google.com&gt;</dc:creator>
    </item>
</channel>
</rss>
