<feed xmlns='http://www.w3.org/2005/Atom'>
<title>bcm5719-llvm/libcxx/test/std/utilities/function.objects, branch meklort-10.0.1</title>
<subtitle>Project Ortega BCM5719 LLVM</subtitle>
<id>https://git.raptorcs.com/git/bcm5719-llvm/atom?h=meklort-10.0.1</id>
<link rel='self' href='https://git.raptorcs.com/git/bcm5719-llvm/atom?h=meklort-10.0.1'/>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/'/>
<updated>2020-01-09T00:46:55+00:00</updated>
<entry>
<title>[libcxx] [test] Disable refwrap/weak_result.pass.cpp in C++20 mode (broken by P0357R3)</title>
<updated>2020-01-09T00:46:55+00:00</updated>
<author>
<name>Billy Robert O'Neal III</name>
<email>bion@microsoft.com</email>
</author>
<published>2020-01-09T00:46:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=85ee4ff4e474788abc7abdc939114281c2a68ec1'/>
<id>urn:sha1:85ee4ff4e474788abc7abdc939114281c2a68ec1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>[libc++] Purge mentions of GCC 4 from the test suite</title>
<updated>2019-09-25T19:40:48+00:00</updated>
<author>
<name>Louis Dionne</name>
<email>ldionne@apple.com</email>
</author>
<published>2019-09-25T19:40:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=45c935bd0b5bde5c432b8ac2a4da1e54f6bc273a'/>
<id>urn:sha1:45c935bd0b5bde5c432b8ac2a4da1e54f6bc273a</id>
<content type='text'>
We don't support GCC 4 and older according to the documentation, so
we should pretend it doesn't exist.

This is a re-application of r372787.

llvm-svn: 372916
</content>
</entry>
<entry>
<title>Revert r372777: [libc++] Implement LWG 2510 and its follow-ups</title>
<updated>2019-09-25T09:10:38+00:00</updated>
<author>
<name>Ilya Biryukov</name>
<email>ibiryukov@google.com</email>
</author>
<published>2019-09-25T09:10:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=a3d337a9a7d00d82bb190c5e551181d3998f6b98'/>
<id>urn:sha1:a3d337a9a7d00d82bb190c5e551181d3998f6b98</id>
<content type='text'>
This also reverts:
 - r372778: [libc++] Implement LWG 3158
 - r372782: [libc++] Try fixing tests that fail on GCC 5 and older
 - r372787: Purge mentions of GCC 4 from the test suite

Reason: the change breaks compilation of LLVM with libc++, for details see
http://lists.llvm.org/pipermail/libcxx-dev/2019-September/000599.html

llvm-svn: 372832
</content>
</entry>
<entry>
<title>[libc++] Purge mentions of GCC 4 from the test suite</title>
<updated>2019-09-24T22:42:36+00:00</updated>
<author>
<name>Louis Dionne</name>
<email>ldionne@apple.com</email>
</author>
<published>2019-09-24T22:42:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=de8609c62a58c1ad8d930482077518e2c570ddd8'/>
<id>urn:sha1:de8609c62a58c1ad8d930482077518e2c570ddd8</id>
<content type='text'>
We don't support GCC 4 and older according to the documentation, so
we should pretend it doesn't exist.

llvm-svn: 372787
</content>
</entry>
<entry>
<title>libcxx: Rename last two .hpp files in libcxx to .h</title>
<updated>2019-08-21T22:38:38+00:00</updated>
<author>
<name>Nico Weber</name>
<email>nicolasweber@gmx.de</email>
</author>
<published>2019-08-21T22:38:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=0f3efc4aab9748ea4791ed47530a9ea7174b97e3'/>
<id>urn:sha1:0f3efc4aab9748ea4791ed47530a9ea7174b97e3</id>
<content type='text'>
Differential Revision: https://reviews.llvm.org/D66544

llvm-svn: 369597
</content>
</entry>
<entry>
<title>libcxx: Rename .hpp files in libcxx/test/support to .h</title>
<updated>2019-08-21T00:14:12+00:00</updated>
<author>
<name>Nico Weber</name>
<email>nicolasweber@gmx.de</email>
</author>
<published>2019-08-21T00:14:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=cc89063bff0f73ec7049a1dcb5d4688ae6806941'/>
<id>urn:sha1:cc89063bff0f73ec7049a1dcb5d4688ae6806941</id>
<content type='text'>
LLVM uses .h as its extension for header files.

Files renamed using:

    for f in libcxx/test/support/*.hpp; do git mv $f ${f%.hpp}.h; done

References to the files updated using:

    for f in $(git diff master | grep 'rename from' | cut -f 3 -d ' '); do
        a=$(basename $f);
        echo $a;
        rg -l $a libcxx | xargs sed -i '' "s/$a/${a%.hpp}.h/";
    done

HPP include guards updated manually using:

    for f in $(git diff master | grep 'rename from' | cut -f 3 -d ' '); do
      echo ${f%.hpp}.h ;
    done | xargs mvim

Differential Revision: https://reviews.llvm.org/D66104

llvm-svn: 369481
</content>
</entry>
<entry>
<title>Fix tests with modules enabled</title>
<updated>2019-07-29T22:48:51+00:00</updated>
<author>
<name>Eric Fiselier</name>
<email>eric@efcs.ca</email>
</author>
<published>2019-07-29T22:48:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=b49d45925c235bc32c21933f958cb5d4a44364f3'/>
<id>urn:sha1:b49d45925c235bc32c21933f958cb5d4a44364f3</id>
<content type='text'>
llvm-svn: 367268
</content>
</entry>
<entry>
<title>[libc++] Add C++17 deduction guides for std::function</title>
<updated>2019-07-18T19:50:56+00:00</updated>
<author>
<name>Louis Dionne</name>
<email>ldionne@apple.com</email>
</author>
<published>2019-07-18T19:50:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=e1eabcdfad89f67ae575b0c86aa4a72d277378b4'/>
<id>urn:sha1:e1eabcdfad89f67ae575b0c86aa4a72d277378b4</id>
<content type='text'>
Summary: http://llvm.org/PR39606

Reviewers: Quuxplusone

Subscribers: christof, dexonsmith, libcxx-commits

Differential Revision: https://reviews.llvm.org/D54410

llvm-svn: 366484
</content>
</entry>
<entry>
<title>Move libc++ specific tests for std::function out of the std directory</title>
<updated>2019-06-11T22:59:53+00:00</updated>
<author>
<name>Eric Fiselier</name>
<email>eric@efcs.ca</email>
</author>
<published>2019-06-11T22:59:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=0e9b1d2a20c5cad342ffa9344df02d1d9dbb08a6'/>
<id>urn:sha1:0e9b1d2a20c5cad342ffa9344df02d1d9dbb08a6</id>
<content type='text'>
llvm-svn: 363111
</content>
</entry>
<entry>
<title>Fix some incorrect std::function tests</title>
<updated>2019-06-08T00:45:45+00:00</updated>
<author>
<name>Eric Fiselier</name>
<email>eric@efcs.ca</email>
</author>
<published>2019-06-08T00:45:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=cdff3806811de210abd0ea368364441a1eac2fa0'/>
<id>urn:sha1:cdff3806811de210abd0ea368364441a1eac2fa0</id>
<content type='text'>
llvm-svn: 362861
</content>
</entry>
</feed>
