<feed xmlns='http://www.w3.org/2005/Atom'>
<title>bcm5719-llvm/llvm/tools/llvm-stress, 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>2019-08-15T15:54:37+00:00</updated>
<entry>
<title>[llvm] Migrate llvm::make_unique to std::make_unique</title>
<updated>2019-08-15T15:54:37+00:00</updated>
<author>
<name>Jonas Devlieghere</name>
<email>jonas@devlieghere.com</email>
</author>
<published>2019-08-15T15:54:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=0eaee545eef49ff9498234d3a51a5cbde59bf976'/>
<id>urn:sha1:0eaee545eef49ff9498234d3a51a5cbde59bf976</id>
<content type='text'>
Now that we've moved to C++14, we no longer need the llvm::make_unique
implementation from STLExtras.h. This patch is a mechanical replacement
of (hopefully) all the llvm::make_unique instances across the monorepo.

llvm-svn: 369013
</content>
</entry>
<entry>
<title>Rename F_{None,Text,Append} to OF_{None,Text,Append}. NFC</title>
<updated>2019-08-05T05:43:48+00:00</updated>
<author>
<name>Fangrui Song</name>
<email>maskray@google.com</email>
</author>
<published>2019-08-05T05:43:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=d9b948b6eb7362f36264b71795dab179906e36be'/>
<id>urn:sha1:d9b948b6eb7362f36264b71795dab179906e36be</id>
<content type='text'>
F_{None,Text,Append} are kept for compatibility since r334221.

llvm-svn: 367800
</content>
</entry>
<entry>
<title>Avoid cppcheck operator precedence warnings. NFCI.</title>
<updated>2019-05-03T13:50:38+00:00</updated>
<author>
<name>Simon Pilgrim</name>
<email>llvm-dev@redking.me.uk</email>
</author>
<published>2019-05-03T13:50:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=aa49be49263f26f3127f4be7fdfda04397ca7114'/>
<id>urn:sha1:aa49be49263f26f3127f4be7fdfda04397ca7114</id>
<content type='text'>
Prefer ((X &amp; Y) ? A : B) to (X &amp; Y ? A : B)

llvm-svn: 359884
</content>
</entry>
<entry>
<title>Update the file headers across all of the LLVM projects in the monorepo</title>
<updated>2019-01-19T08:50:56+00:00</updated>
<author>
<name>Chandler Carruth</name>
<email>chandlerc@gmail.com</email>
</author>
<published>2019-01-19T08:50:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=2946cd701067404b99c39fb29dc9c74bd7193eb3'/>
<id>urn:sha1:2946cd701067404b99c39fb29dc9c74bd7193eb3</id>
<content type='text'>
to reflect the new license.

We understand that people may be surprised that we're moving the header
entirely to discuss the new license. We checked this carefully with the
Foundation's lawyer and we believe this is the correct approach.

Essentially, all code in the project is now made available by the LLVM
project under our new license, so you will see that the license headers
include that license only. Some of our contributors have contributed
code under our old license, and accordingly, we have retained a copy of
our old license notice in the top-level files in each project and
repository.

llvm-svn: 351636
</content>
</entry>
<entry>
<title>Repair compilation of llvm-stress after r350835.</title>
<updated>2019-01-10T16:43:26+00:00</updated>
<author>
<name>James Y Knight</name>
<email>jyknight@google.com</email>
</author>
<published>2019-01-10T16:43:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=ca22fa33911b80d0624f2595efb85bba5bae3e33'/>
<id>urn:sha1:ca22fa33911b80d0624f2595efb85bba5bae3e33</id>
<content type='text'>
Apparently it doesn't get built by 'ninja check'. :(

llvm-svn: 350843
</content>
</entry>
<entry>
<title>[opaque pointer types] Remove some calls to generic Type subtype accessors.</title>
<updated>2019-01-10T16:07:20+00:00</updated>
<author>
<name>James Y Knight</name>
<email>jyknight@google.com</email>
</author>
<published>2019-01-10T16:07:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=62df5eed16a07c4dd183c71d69d6858b5fa19652'/>
<id>urn:sha1:62df5eed16a07c4dd183c71d69d6858b5fa19652</id>
<content type='text'>
That is, remove many of the calls to Type::getNumContainedTypes(),
Type::subtypes(), and Type::getContainedType(N).

I'm not intending to remove these accessors -- they are
useful/necessary in some cases. However, removing the pointee type
from pointers would potentially break some uses, and reducing the
number of calls makes it easier to audit.

llvm-svn: 350835
</content>
</entry>
<entry>
<title>[Support] Rename tool_output_file to ToolOutputFile, NFC</title>
<updated>2017-09-23T01:03:17+00:00</updated>
<author>
<name>Reid Kleckner</name>
<email>rnk@google.com</email>
</author>
<published>2017-09-23T01:03:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=3fc649cb76f56da0ded256048de6dc634f03b502'/>
<id>urn:sha1:3fc649cb76f56da0ded256048de6dc634f03b502</id>
<content type='text'>
This class isn't similar to anything from the STL, so it shouldn't use
the STL naming conventions.

llvm-svn: 314050
</content>
</entry>
<entry>
<title>[Analysis] Fix some Clang-tidy modernize-use-using and Include What You Use warnings; other minor fixes. Also affected in files (NFC).</title>
<updated>2017-08-31T21:56:16+00:00</updated>
<author>
<name>Eugene Zelenko</name>
<email>eugene.zelenko@gmail.com</email>
</author>
<published>2017-08-31T21:56:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=fa6434bebb74cb8db67a3835e18ebd3f1f176862'/>
<id>urn:sha1:fa6434bebb74cb8db67a3835e18ebd3f1f176862</id>
<content type='text'>
llvm-svn: 312289
</content>
</entry>
<entry>
<title>[IR] Make use of Type::isPtrOrPtrVectorTy/isIntOrIntVectorTy/isFPOrFPVectorTy to shorten code. NFC</title>
<updated>2017-07-09T07:04:00+00:00</updated>
<author>
<name>Craig Topper</name>
<email>craig.topper@intel.com</email>
</author>
<published>2017-07-09T07:04:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=95d2347ae16335aa30139c0aa6c050ac3dce2ad7'/>
<id>urn:sha1:95d2347ae16335aa30139c0aa6c050ac3dce2ad7</id>
<content type='text'>
llvm-svn: 307491
</content>
</entry>
<entry>
<title>[llvm-stress] Add getRandom() helper that was going to be part of D34157. NFCI.</title>
<updated>2017-06-26T15:41:36+00:00</updated>
<author>
<name>Simon Pilgrim</name>
<email>llvm-dev@redking.me.uk</email>
</author>
<published>2017-06-26T15:41:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=e77df9bc6c2729a78545db11cfa09d0a9927a540'/>
<id>urn:sha1:e77df9bc6c2729a78545db11cfa09d0a9927a540</id>
<content type='text'>
llvm-svn: 306294
</content>
</entry>
</feed>
