<?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 p9-noexcept.cpp</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>532dc62b - [OpaquePtrs][Clang] Add -no-opaque-pointers to tests (NFC)</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/CXX/except/except.spec/p9-noexcept.cpp#532dc62b</link>
        <description>[OpaquePtrs][Clang] Add -no-opaque-pointers to tests (NFC)This adds -no-opaque-pointers to clang tests whose output willchange when opaque pointers are enabled by default. This isintended to be part of the migration approach described inhttps://discourse.llvm.org/t/enabling-opaque-pointers-by-default/61322/9.The patch has been produced by replacing %clang_cc1 with%clang_cc1 -no-opaque-pointers for tests that fail with opaquepointers enabled. Worth noting that this doesn&apos;t cover all tests,there&apos;s a remaining ~40 tests not using %clang_cc1 that will needa followup change.Differential Revision: https://reviews.llvm.org/D123115

            List of files:
            /llvm-project-15.0.7/clang/test/CXX/except/except.spec/p9-noexcept.cpp</description>
        <pubDate>Thu, 07 Apr 2022 10:03:55 +0000</pubDate>
        <dc:creator>Nikita Popov &lt;npopov@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>fcbdb6ea - Update clang to take into account the changes to personality fns</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/CXX/except/except.spec/p9-noexcept.cpp#fcbdb6ea</link>
        <description>Update clang to take into account the changes to personality fnsllvm-svn: 239941

            List of files:
            /llvm-project-15.0.7/clang/test/CXX/except/except.spec/p9-noexcept.cpp</description>
        <pubDate>Wed, 17 Jun 2015 20:53:19 +0000</pubDate>
        <dc:creator>David Majnemer &lt;david.majnemer@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>e1c4a1ba - Update to use references to attribute groups instead of listing the attributes on the call/invoke instructions.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/CXX/except/except.spec/p9-noexcept.cpp#e1c4a1ba</link>
        <description>Update to use references to attribute groups instead of listing the attributes on the call/invoke instructions.llvm-svn: 175878

            List of files:
            /llvm-project-15.0.7/clang/test/CXX/except/except.spec/p9-noexcept.cpp</description>
        <pubDate>Fri, 22 Feb 2013 09:10:20 +0000</pubDate>
        <dc:creator>Bill Wendling &lt;isanbard@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>e142ad50 - Call __cxa_begin_catch with the current exception before</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/CXX/except/except.spec/p9-noexcept.cpp#e142ad50</link>
        <description>Call __cxa_begin_catch with the current exception beforecalling std::terminate().  rdar://11904428llvm-svn: 174940

            List of files:
            /llvm-project-15.0.7/clang/test/CXX/except/except.spec/p9-noexcept.cpp</description>
        <pubDate>Tue, 12 Feb 2013 03:51:46 +0000</pubDate>
        <dc:creator>John McCall &lt;rjmccall@apple.com&gt;</dc:creator>
    </item>
<item>
        <title>9ca5c425 - Update all tests other than Driver/std.cpp to use -std=c++11 rather than</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/CXX/except/except.spec/p9-noexcept.cpp#9ca5c425</link>
        <description>Update all tests other than Driver/std.cpp to use -std=c++11 rather than-std=c++0x. Patch by Ahmed Charles!llvm-svn: 141900

            List of files:
            /llvm-project-15.0.7/clang/test/CXX/except/except.spec/p9-noexcept.cpp</description>
        <pubDate>Thu, 13 Oct 2011 22:29:44 +0000</pubDate>
        <dc:creator>Richard Smith &lt;richard-llvm@metafoo.co.uk&gt;</dc:creator>
    </item>
<item>
        <title>f0724e8e - Throw the switch to convert clang to the new exception handling model!</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/CXX/except/except.spec/p9-noexcept.cpp#f0724e8e</link>
        <description>Throw the switch to convert clang to the new exception handling model!This model uses the &apos;landingpad&apos; instruction, which is pinned to the top of thelanding pad. (A landing pad is defined as the destination of the unwind branchof an invoke instruction.) All of the information needed to generate the correctexception handling metadata during code generation is encoded into thelandingpad instruction.The new &apos;resume&apos; instruction takes the place of the llvm.eh.resume intrinsiccall. It&apos;s lowered in much the same way as the intrinsic is.llvm-svn: 140049

            List of files:
            /llvm-project-15.0.7/clang/test/CXX/except/except.spec/p9-noexcept.cpp</description>
        <pubDate>Mon, 19 Sep 2011 20:31:14 +0000</pubDate>
        <dc:creator>Bill Wendling &lt;isanbard@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>0b94c9fb - Reintroduce r127617: &quot;Code generation for noexcept.&quot; with fixes.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/CXX/except/except.spec/p9-noexcept.cpp#0b94c9fb</link>
        <description>Reintroduce r127617: &quot;Code generation for noexcept.&quot; with fixes.llvm-svn: 127685

            List of files:
            /llvm-project-15.0.7/clang/test/CXX/except/except.spec/p9-noexcept.cpp</description>
        <pubDate>Tue, 15 Mar 2011 18:42:48 +0000</pubDate>
        <dc:creator>Sebastian Redl &lt;sebastian.redl@getdesigned.at&gt;</dc:creator>
    </item>
<item>
        <title>97022fd3 - Code generation for noexcept.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/CXX/except/except.spec/p9-noexcept.cpp#97022fd3</link>
        <description>Code generation for noexcept.llvm-svn: 127617

            List of files:
            /llvm-project-15.0.7/clang/test/CXX/except/except.spec/p9-noexcept.cpp</description>
        <pubDate>Mon, 14 Mar 2011 20:33:20 +0000</pubDate>
        <dc:creator>Sebastian Redl &lt;sebastian.redl@getdesigned.at&gt;</dc:creator>
    </item>
</channel>
</rss>
