<feed xmlns='http://www.w3.org/2005/Atom'>
<title>llvm-project.git, branch users/fmayer/fmayer-patch-1</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/'/>
<entry>
<title>[LVI] [NFC] Fix incorrect comment</title>
<updated>2025-05-27T19:07:48+00:00</updated>
<author>
<name>Florian Mayer</name>
<email>fmayer@google.com</email>
</author>
<published>2025-05-27T19:07:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=04938f4517d93ab8728a348037f805510c18ed1b'/>
<id>04938f4517d93ab8728a348037f805510c18ed1b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>CodeGen: Fix implementation of __builtin_trivially_relocate.</title>
<updated>2025-05-24T00:02:49+00:00</updated>
<author>
<name>Peter Collingbourne</name>
<email>pcc@google.com</email>
</author>
<published>2025-05-24T00:02:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=b20801646a72b936983261b249e2bc97987445e4'/>
<id>b20801646a72b936983261b249e2bc97987445e4</id>
<content type='text'>
The builtin is documented to copy `count` elements, but the implementation
copies `count` bytes. Fix that.

Reviewers: cor3ntin, ojhunt

Pull Request: https://github.com/llvm/llvm-project/pull/140312
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The builtin is documented to copy `count` elements, but the implementation
copies `count` bytes. Fix that.

Reviewers: cor3ntin, ojhunt

Pull Request: https://github.com/llvm/llvm-project/pull/140312
</pre>
</div>
</content>
</entry>
<entry>
<title>[clang-doc] Implement setupTemplateValue for HTMLMustacheGenerator (#138064)</title>
<updated>2025-05-23T22:59:42+00:00</updated>
<author>
<name>Paul Kirth</name>
<email>paulkirth@google.com</email>
</author>
<published>2025-05-23T22:59:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=26fe803b9fcc555ce7f719b542a05690805d5140'/>
<id>26fe803b9fcc555ce7f719b542a05690805d5140</id>
<content type='text'>
This patch implements the business logic for setupTemplateValue, which
was split from #133161. The implementation configures the relative path
relationships between the various HTML components, and prepares them
prior to their use in the generator.

Co-authored-by: Peter Chou &lt;peter.chou@mail.utoronto.ca&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch implements the business logic for setupTemplateValue, which
was split from #133161. The implementation configures the relative path
relationships between the various HTML components, and prepares them
prior to their use in the generator.

Co-authored-by: Peter Chou &lt;peter.chou@mail.utoronto.ca&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[clang-doc] Extract Info into JSON values (#138063)</title>
<updated>2025-05-23T22:56:44+00:00</updated>
<author>
<name>Paul Kirth</name>
<email>paulkirth@google.com</email>
</author>
<published>2025-05-23T22:56:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=a8be7a74893e82d23d9cd2a8f9fb08181b81aac7'/>
<id>a8be7a74893e82d23d9cd2a8f9fb08181b81aac7</id>
<content type='text'>
Split from #133161. This patch provides the implementation of a number
of extractValue overloads used with the different types of Info.

The new helper functions extract the relevant information from the
different *Infos and inserts them into the correct fields of the JSON
values that will be used with the specific Mustache templates, which
will land separately.

Co-authored-by: Peter Chou &lt;peter.chou@mail.utoronto.ca&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Split from #133161. This patch provides the implementation of a number
of extractValue overloads used with the different types of Info.

The new helper functions extract the relevant information from the
different *Infos and inserts them into the correct fields of the JSON
values that will be used with the specific Mustache templates, which
will land separately.

Co-authored-by: Peter Chou &lt;peter.chou@mail.utoronto.ca&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[CIR] Add alignment support for global, store, and load ops (#141163)</title>
<updated>2025-05-23T22:34:59+00:00</updated>
<author>
<name>Andy Kaylor</name>
<email>akaylor@nvidia.com</email>
</author>
<published>2025-05-23T22:34:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=ea3c225786a71376ab0758cda8f3716da2469142'/>
<id>ea3c225786a71376ab0758cda8f3716da2469142</id>
<content type='text'>
This adds alignment support for GlobalOp, LoadOp, and StoreOp.

Tests which failed because cir.store/cir.load now print alignment were
updated with wildcard matches, except where the alignment was relevant
to the test. Tests which check for cir.store/cir.load in cases that
don't have explicit alignment were not updated.

New tests for alignment are alignment.c, align-load.c, and
align-store.c.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This adds alignment support for GlobalOp, LoadOp, and StoreOp.

Tests which failed because cir.store/cir.load now print alignment were
updated with wildcard matches, except where the alignment was relevant
to the test. Tests which check for cir.store/cir.load in cases that
don't have explicit alignment were not updated.

New tests for alignment are alignment.c, align-load.c, and
align-store.c.</pre>
</div>
</content>
</entry>
<entry>
<title>[RISCV] Fix typo '==' instead of '='. NFC</title>
<updated>2025-05-23T21:26:21+00:00</updated>
<author>
<name>Craig Topper</name>
<email>craig.topper@sifive.com</email>
</author>
<published>2025-05-23T21:26:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=1695e8b3d1080cea089baa74b2c3c7fd469c62c8'/>
<id>1695e8b3d1080cea089baa74b2c3c7fd469c62c8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[MLIR][LLVM][DLTI] Handle data layout token 'Fn32' (#141167)</title>
<updated>2025-05-23T21:17:45+00:00</updated>
<author>
<name>Bruno Cardoso Lopes</name>
<email>bruno.cardoso@gmail.com</email>
</author>
<published>2025-05-23T21:17:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=faa4505bcbf8bd3623cfdb5a25207d0132bc978f'/>
<id>faa4505bcbf8bd3623cfdb5a25207d0132bc978f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[RISCV] Custom lower fixed length partial.reduce to zvqdotq (#141180)</title>
<updated>2025-05-23T20:56:49+00:00</updated>
<author>
<name>Philip Reames</name>
<email>preames@rivosinc.com</email>
</author>
<published>2025-05-23T20:56:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=77a3f81dc4139dfe7eaf7f0af2a5d45f491e9902'/>
<id>77a3f81dc4139dfe7eaf7f0af2a5d45f491e9902</id>
<content type='text'>
This is a follow on to 9b4de7 which handles the fixed vector cases. In
retrospect, this is simple enough if probably should have just been part
of the original commit, but oh well.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is a follow on to 9b4de7 which handles the fixed vector cases. In
retrospect, this is simple enough if probably should have just been part
of the original commit, but oh well.</pre>
</div>
</content>
</entry>
<entry>
<title>[libc++][NFC] Replace a few "namespace std" with the correct macro (#140510)</title>
<updated>2025-05-23T20:56:24+00:00</updated>
<author>
<name>Nikolas Klauser</name>
<email>nikolasklauser@berlin.de</email>
</author>
<published>2025-05-23T20:56:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=1d411f27c769a32cb22ce50b9dc4421e34fd40dd'/>
<id>1d411f27c769a32cb22ce50b9dc4421e34fd40dd</id>
<content type='text'>
We've added a new macro for the unversioned `namespace std` cases in
#133009, but it seems we've missed a few places. This fixes the places I
just found.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We've added a new macro for the unversioned `namespace std` cases in
#133009, but it seems we've missed a few places. This fixes the places I
just found.</pre>
</div>
</content>
</entry>
<entry>
<title>[clang-format][NFC] FormatTokenLexer.cpp cleanup (#141202)</title>
<updated>2025-05-23T20:49:28+00:00</updated>
<author>
<name>Owen Pan</name>
<email>owenpiano@gmail.com</email>
</author>
<published>2025-05-23T20:49:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=eb341f0b044c41dd8313365efbfc45cd587cb5a0'/>
<id>eb341f0b044c41dd8313365efbfc45cd587cb5a0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
