<feed xmlns='http://www.w3.org/2005/Atom'>
<title>bcm5719-llvm/libcxx/test/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>2014-12-20T01:40:03+00:00</updated>
<entry>
<title>Move test into test/std subdirectory.</title>
<updated>2014-12-20T01:40:03+00:00</updated>
<author>
<name>Eric Fiselier</name>
<email>eric@efcs.ca</email>
</author>
<published>2014-12-20T01:40:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=5a83710e371fe68a06e6e3876c6a2c8b820a8976'/>
<id>urn:sha1:5a83710e371fe68a06e6e3876c6a2c8b820a8976</id>
<content type='text'>
llvm-svn: 224658
</content>
</entry>
<entry>
<title>Add tests to ensure that reference_wrapper&lt;T&gt; is trivially copyable. This was added to C++1z with the adoption of N4277, but libc++ already implemented it as a conforming extension. No code changes were needed, just more tests.</title>
<updated>2014-11-17T15:04:46+00:00</updated>
<author>
<name>Marshall Clow</name>
<email>mclow.lists@gmail.com</email>
</author>
<published>2014-11-17T15:04:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=5a8c46653f15350abf326fbf46d7b91cc976671d'/>
<id>urn:sha1:5a8c46653f15350abf326fbf46d7b91cc976671d</id>
<content type='text'>
llvm-svn: 222132
</content>
</entry>
<entry>
<title>Actually mark the tests an unsupported with MSAN (not just ASAN)</title>
<updated>2014-11-04T05:36:15+00:00</updated>
<author>
<name>Eric Fiselier</name>
<email>eric@efcs.ca</email>
</author>
<published>2014-11-04T05:36:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=652a3f3257dcb824c9be061994c8f3e22394bb40'/>
<id>urn:sha1:652a3f3257dcb824c9be061994c8f3e22394bb40</id>
<content type='text'>
llvm-svn: 221240
</content>
</entry>
<entry>
<title>Mark tests that replace operator new/delete as UNSUPPORTED with ASAN and MSAN.</title>
<updated>2014-11-04T05:11:41+00:00</updated>
<author>
<name>Eric Fiselier</name>
<email>eric@efcs.ca</email>
</author>
<published>2014-11-04T05:11:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=446e4b6be1ea99c88924ae6ee588eafa63264018'/>
<id>urn:sha1:446e4b6be1ea99c88924ae6ee588eafa63264018</id>
<content type='text'>
tests that replace operator new/delete won't link when using ASAN and MSAN 
because these sanitizers also replace new/delete.

llvm-svn: 221236
</content>
</entry>
<entry>
<title>Add test for type properties of std::reference_wrapper</title>
<updated>2014-11-04T01:54:44+00:00</updated>
<author>
<name>Eric Fiselier</name>
<email>eric@efcs.ca</email>
</author>
<published>2014-11-04T01:54:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=49c541a7549eef84e5f046ba5d73906f27eef43d'/>
<id>urn:sha1:49c541a7549eef84e5f046ba5d73906f27eef43d</id>
<content type='text'>
llvm-svn: 221224
</content>
</entry>
<entry>
<title>Whitespace maintenance. Remove a bunch of tabs that snuck in. No functionality change</title>
<updated>2014-10-18T11:03:33+00:00</updated>
<author>
<name>Marshall Clow</name>
<email>mclow.lists@gmail.com</email>
</author>
<published>2014-10-18T11:03:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=c8528b5001f121449470d57caa7bc06cc81e7bfc'/>
<id>urn:sha1:c8528b5001f121449470d57caa7bc06cc81e7bfc</id>
<content type='text'>
llvm-svn: 220142
</content>
</entry>
<entry>
<title>Fix a problem with reference_wrapper in C++03 that was causing counting predicates to fail. Add a test to make sure it works. However, most of the reference_wrapper tests still fail in C++03 mode, due to a lack of decltype. No change there.</title>
<updated>2014-08-04T19:20:17+00:00</updated>
<author>
<name>Marshall Clow</name>
<email>mclow.lists@gmail.com</email>
</author>
<published>2014-08-04T19:20:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=89872e99a51761419440e16c839f4e8b6b4e6fce'/>
<id>urn:sha1:89872e99a51761419440e16c839f4e8b6b4e6fce</id>
<content type='text'>
llvm-svn: 214760
</content>
</entry>
<entry>
<title>Fix libc++ bug #20039: 'Constructing std::function from empty compatible std::function results in half-empty state' Thanks to Agustin Berge for the report, and for his and Eric Fiselier's work on a fix.</title>
<updated>2014-06-30T21:27:51+00:00</updated>
<author>
<name>Marshall Clow</name>
<email>mclow.lists@gmail.com</email>
</author>
<published>2014-06-30T21:27:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=38cae6330b3e41fb4c81f6fbdb98b4c8c5b159a8'/>
<id>urn:sha1:38cae6330b3e41fb4c81f6fbdb98b4c8c5b159a8</id>
<content type='text'>
llvm-svn: 212070
</content>
</entry>
<entry>
<title>Bug #19473. If you pass an allocator to std::function, we should use that allocator, not construct one from scratch. Add a test to make sure</title>
<updated>2014-04-18T17:23:36+00:00</updated>
<author>
<name>Marshall Clow</name>
<email>mclow.lists@gmail.com</email>
</author>
<published>2014-04-18T17:23:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=5f7c2db2ceae312498634bd521ef64a69a6e2545'/>
<id>urn:sha1:5f7c2db2ceae312498634bd521ef64a69a6e2545</id>
<content type='text'>
llvm-svn: 206623
</content>
</entry>
<entry>
<title>Fix for PR17606 - result_of (and INVOKE) works incorrectly for member function pointers with ref qualifiers. Also a drive-by fix for common_type in C++03 mode. Thanks to Michel Morin for the bug report and the proposed fix.</title>
<updated>2014-02-10T17:40:28+00:00</updated>
<author>
<name>Marshall Clow</name>
<email>mclow.lists@gmail.com</email>
</author>
<published>2014-02-10T17:40:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=5bd869490b9fd6ecd2e6165296c2e2c28c3b2e64'/>
<id>urn:sha1:5bd869490b9fd6ecd2e6165296c2e2c28c3b2e64</id>
<content type='text'>
llvm-svn: 201101
</content>
</entry>
</feed>
