<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/source/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in CMakeLists.txt</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>90065da6d5a5f661b60c2f75b0f2dc094d27f4f5 - [libc] created fuzz test for sin function (#101411)</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/libc/fuzzing/CMakeLists.txt#90065da6d5a5f661b60c2f75b0f2dc094d27f4f5</link>
        <description>[libc] created fuzz test for sin function (#101411)Verifies that sin function output is correct by comparing with MPFRoutput. NaN and inf are not tested (as our output will vary compared toMPFR), and signed zeroes are already tested in unit tests.

            List of files:
            /llvm-project/libc/fuzzing/CMakeLists.txt</description>
        <pubDate>Thu, 01 Aug 2024 17:31:04 +0000</pubDate>
        <dc:creator>RoseZhang03 &lt;rosezhang@google.com&gt;</dc:creator>
    </item>
<item>
        <title>71c3f5d617aa132418e87403c8be3cdcd102ab18 - [reland][libc] Refactor `BigInt` (#87613)</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/libc/fuzzing/CMakeLists.txt#71c3f5d617aa132418e87403c8be3cdcd102ab18</link>
        <description>[reland][libc] Refactor `BigInt` (#87613)This is a reland of #86137 with a fix for platforms / compiler that donot support trivially constructible int128 types.

            List of files:
            /llvm-project/libc/fuzzing/CMakeLists.txt</description>
        <pubDate>Thu, 04 Apr 2024 09:41:27 +0000</pubDate>
        <dc:creator>Guillaume Chatelet &lt;gchatelet@google.com&gt;</dc:creator>
    </item>
<item>
        <title>12735916bd3a63aa9f316af8eebfe9420cfec489 - Revert &quot;[libc] Refactor `BigInt`&quot; (#87612)</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/libc/fuzzing/CMakeLists.txt#12735916bd3a63aa9f316af8eebfe9420cfec489</link>
        <description>Revert &quot;[libc] Refactor `BigInt`&quot; (#87612)Reverts llvm/llvm-project#86137Some aarch64 compilers seem to consider that `uint128_t` is not`is_trivially_constructible` which prevents `bit_cast`-ing.

            List of files:
            /llvm-project/libc/fuzzing/CMakeLists.txt</description>
        <pubDate>Thu, 04 Apr 2024 09:10:30 +0000</pubDate>
        <dc:creator>Guillaume Chatelet &lt;gchatelet@google.com&gt;</dc:creator>
    </item>
<item>
        <title>a2306b65d223212dcfafe12c7299262d8d4fdcb4 - [libc] Refactor `BigInt` (#86137)</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/libc/fuzzing/CMakeLists.txt#a2306b65d223212dcfafe12c7299262d8d4fdcb4</link>
        <description>[libc] Refactor `BigInt` (#86137)This patch moves most of the multiprecision logic to the `multiword`namespace and simplifies some logic in `BigInt`. It also fullyimplements the mask and count functions and increases test coverage.`math_extras.h` is also reworked to make it more concise.

            List of files:
            /llvm-project/libc/fuzzing/CMakeLists.txt</description>
        <pubDate>Thu, 04 Apr 2024 08:27:08 +0000</pubDate>
        <dc:creator>Guillaume Chatelet &lt;gchatelet@google.com&gt;</dc:creator>
    </item>
<item>
        <title>5d56b34807e0f6e7a6684e57bec7c1751778862c - [libc] Remove direct math.h includes (#85324)</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/libc/fuzzing/CMakeLists.txt#5d56b34807e0f6e7a6684e57bec7c1751778862c</link>
        <description>[libc] Remove direct math.h includes (#85324)Reland of #84991A downstream overlay mode user ran into issues with the isnan macro notworking in our sources with a specific libc configuration. This patchreplaces the last direct includes of math.h with our internalmath_macros.h, along with the necessary build system changes.

            List of files:
            /llvm-project/libc/fuzzing/CMakeLists.txt</description>
        <pubDate>Mon, 18 Mar 2024 21:19:33 +0000</pubDate>
        <dc:creator>Michael Jones &lt;michaelrj@google.com&gt;</dc:creator>
    </item>
<item>
        <title>f6b724f1f9c8d8019b8a425b6fb52e1cf6fc0215 - [libc] Add basic fuzz target for the printf parser</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/libc/fuzzing/CMakeLists.txt#f6b724f1f9c8d8019b8a425b6fb52e1cf6fc0215</link>
        <description>[libc] Add basic fuzz target for the printf parserThe goal is to fuzz the entirety of printf, but the plan is to do it inpieces for simplicity. This test fuzzes just the parser, while latertests will fuzz the converters. This also adds a mock version of thearg_list class.Reviewed By: sivachandraDifferential Revision: https://reviews.llvm.org/D143784

            List of files:
            /llvm-project/libc/fuzzing/CMakeLists.txt</description>
        <pubDate>Fri, 10 Feb 2023 23:00:32 +0000</pubDate>
        <dc:creator>Michael Jones &lt;michaelrj@google.com&gt;</dc:creator>
    </item>
<item>
        <title>5eb6b8272931473f3b279db5d2c0006993fda21a - [libc] Add an implementation of qsort.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/libc/fuzzing/CMakeLists.txt#5eb6b8272931473f3b279db5d2c0006993fda21a</link>
        <description>[libc] Add an implementation of qsort.A fuzzer for qsort has also been added.Reviewed By: michaelrjDifferential Revision: https://reviews.llvm.org/D110382

            List of files:
            /llvm-project/libc/fuzzing/CMakeLists.txt</description>
        <pubDate>Wed, 22 Sep 2021 21:31:50 +0000</pubDate>
        <dc:creator>Siva Chandra Reddy &lt;sivachandra@google.com&gt;</dc:creator>
    </item>
<item>
        <title>b5d6da3587469246a77d573fdf17ffa85a07673c - [libc] Remove libc-fuzzer as a dependency to check-libc.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/libc/fuzzing/CMakeLists.txt#b5d6da3587469246a77d573fdf17ffa85a07673c</link>
        <description>[libc] Remove libc-fuzzer as a dependency to check-libc.

            List of files:
            /llvm-project/libc/fuzzing/CMakeLists.txt</description>
        <pubDate>Thu, 10 Jun 2021 05:05:11 +0000</pubDate>
        <dc:creator>Siva Chandra Reddy &lt;sivachandra@google.com&gt;</dc:creator>
    </item>
<item>
        <title>892ed1f15076251dd94d1e4783033d34ed69a3ed - [libc] Add differential fuzzers for ldexp and remquo.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/libc/fuzzing/CMakeLists.txt#892ed1f15076251dd94d1e4783033d34ed69a3ed</link>
        <description>[libc] Add differential fuzzers for ldexp and remquo.Reviewed By: lntueDifferential Revision: https://reviews.llvm.org/D91763

            List of files:
            /llvm-project/libc/fuzzing/CMakeLists.txt</description>
        <pubDate>Wed, 18 Nov 2020 15:28:00 +0000</pubDate>
        <dc:creator>Siva Chandra Reddy &lt;sivachandra@google.com&gt;</dc:creator>
    </item>
<item>
        <title>a4f45ee73a9e948622488f874d5e01408dffba2a - [libc] Lay out framework for fuzzing libc functions.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/libc/fuzzing/CMakeLists.txt#a4f45ee73a9e948622488f874d5e01408dffba2a</link>
        <description>[libc] Lay out framework for fuzzing libc functions.Summary:Added fuzzing test for strcpy and some documentation related to fuzzing.This will be the first step in integrating this with oss-fuzz.Reviewers: sivachandra, abrachetReviewed By: sivachandra, abrachetSubscribers: gchatelet, abrachet, mgorny, MaskRay, tschuett, libc-commitsTags: #libc-projectDifferential Revision: https://reviews.llvm.org/D74091

            List of files:
            /llvm-project/libc/fuzzing/CMakeLists.txt</description>
        <pubDate>Sat, 22 Feb 2020 03:14:51 +0000</pubDate>
        <dc:creator>Paula Toth &lt;paulatoth@google.com&gt;</dc:creator>
    </item>
</channel>
</rss>
