<feed xmlns='http://www.w3.org/2005/Atom'>
<title>llvm-project.git, branch users/evelez7/clang-doc-precommit-function-comments</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>[clang-doc] precommit test for function comments</title>
<updated>2025-07-25T02:51:29+00:00</updated>
<author>
<name>Erick Velez</name>
<email>erickvelez7@gmail.com</email>
</author>
<published>2025-07-23T17:16:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=d8e460ad55c4e2353ee507c5f03eb344a46353e3'/>
<id>d8e460ad55c4e2353ee507c5f03eb344a46353e3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[clang-doc] remove nesting of text comments inside paragraphs (#150451)</title>
<updated>2025-07-25T02:49:54+00:00</updated>
<author>
<name>Erick Velez</name>
<email>erickvelez7@gmail.com</email>
</author>
<published>2025-07-25T02:49:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=2ca8cf922ff8f9498ae0f9def9dab9bf145c6653'/>
<id>2ca8cf922ff8f9498ae0f9def9dab9bf145c6653</id>
<content type='text'>
Text comments were unnecessarily nested inside Paragraph comments as a
Children array. If they're at the top level, we can also avoid more
nesting in templates.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Text comments were unnecessarily nested inside Paragraph comments as a
Children array. If they're at the top level, we can also avoid more
nesting in templates.</pre>
</div>
</content>
</entry>
<entry>
<title>[RISCV] Remove empty pattern argument from RISCVVPseudo instantiations. NFC (#150554)</title>
<updated>2025-07-25T02:40:35+00:00</updated>
<author>
<name>Craig Topper</name>
<email>craig.topper@sifive.com</email>
</author>
<published>2025-07-25T02:40:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=fc91af64b99a3d292dccd6bee3cb6b519d927710'/>
<id>fc91af64b99a3d292dccd6bee3cb6b519d927710</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[mlir][vector] Add a check to ensure input vector rank equals target shape rank (#149239)</title>
<updated>2025-07-25T02:37:33+00:00</updated>
<author>
<name>Longsheng Mou</name>
<email>longshengmou@gmail.com</email>
</author>
<published>2025-07-25T02:37:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=75aa629269c2cea94352f4029a84668bf157dc86'/>
<id>75aa629269c2cea94352f4029a84668bf157dc86</id>
<content type='text'>
The crash is caused because, during IR transformation, the
vector-unrolling pass (using ExtractStridedSliceOp) attempts to slice an
input vector of higher rank using a target vector of lower rank, which
is not supported. Fixes #148368.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The crash is caused because, during IR transformation, the
vector-unrolling pass (using ExtractStridedSliceOp) attempts to slice an
input vector of higher rank using a target vector of lower rank, which
is not supported. Fixes #148368.</pre>
</div>
</content>
</entry>
<entry>
<title>[gn] stub out 68c8c8ceeba (LLDB_BUILD_LLDBRPC)</title>
<updated>2025-07-25T02:37:22+00:00</updated>
<author>
<name>Nico Weber</name>
<email>thakis@chromium.org</email>
</author>
<published>2025-07-25T02:36:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=6d8d6f6e036c374fb81d687b9f85905d75547345'/>
<id>6d8d6f6e036c374fb81d687b9f85905d75547345</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[mlir][NFC] Use `getDefiningOp&lt;OpTy&gt;()` instead of `dyn_cast&lt;OpTy&gt;(getDefiningOp())` (#150428)</title>
<updated>2025-07-25T02:35:51+00:00</updated>
<author>
<name>Longsheng Mou</name>
<email>longshengmou@gmail.com</email>
</author>
<published>2025-07-25T02:35:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=f047b735e9d2765b3e01f618c16349f3b836f079'/>
<id>f047b735e9d2765b3e01f618c16349f3b836f079</id>
<content type='text'>
This PR uses `val.getDefiningOp&lt;OpTy&gt;()` to replace `dyn_cast&lt;OpTy&gt;(val.getDefiningOp())` , `dyn_cast_or_null&lt;OpTy&gt;(val.getDefiningOp())` and `dyn_cast_if_present&lt;OpTy&gt;(val.getDefiningOp())`.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This PR uses `val.getDefiningOp&lt;OpTy&gt;()` to replace `dyn_cast&lt;OpTy&gt;(val.getDefiningOp())` , `dyn_cast_or_null&lt;OpTy&gt;(val.getDefiningOp())` and `dyn_cast_if_present&lt;OpTy&gt;(val.getDefiningOp())`.</pre>
</div>
</content>
</entry>
<entry>
<title>[gn] port d750c6de8a75</title>
<updated>2025-07-25T02:31:37+00:00</updated>
<author>
<name>Nico Weber</name>
<email>thakis@chromium.org</email>
</author>
<published>2025-07-25T02:31:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=b16ef206264fb6cc549d5251e79f5c627b6f685a'/>
<id>b16ef206264fb6cc549d5251e79f5c627b6f685a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[clang-doc] enable comments in class templates (#149848)</title>
<updated>2025-07-25T02:16:28+00:00</updated>
<author>
<name>Erick Velez</name>
<email>erickvelez7@gmail.com</email>
</author>
<published>2025-07-25T02:16:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=78a4634ef0454fe54570545f8b75083d274f54a2'/>
<id>78a4634ef0454fe54570545f8b75083d274f54a2</id>
<content type='text'>
The Mustache basic project has comments in its headers but the comments were not
serialized. Now we serialize \brief and paragraph comments for classes
and add that output to the basic project test.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The Mustache basic project has comments in its headers but the comments were not
serialized. Now we serialize \brief and paragraph comments for classes
and add that output to the basic project test.</pre>
</div>
</content>
</entry>
<entry>
<title>[flang][fir] Add conversion of `fir.if` to `scf.if`. (#149959)</title>
<updated>2025-07-25T02:03:50+00:00</updated>
<author>
<name>Terapines MLIR</name>
<email>osc-mlir@terapines.com</email>
</author>
<published>2025-07-25T02:03:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=8e9ca057eb4dd728e829d3d9051f3cd577c4d441'/>
<id>8e9ca057eb4dd728e829d3d9051f3cd577c4d441</id>
<content type='text'>
This commmit is a supplement for
https://github.com/llvm/llvm-project/pull/140374.

RFC:https://discourse.llvm.org/t/rfc-add-fir-affine-optimization-fir-pass-pipeline/86190/6</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This commmit is a supplement for
https://github.com/llvm/llvm-project/pull/140374.

RFC:https://discourse.llvm.org/t/rfc-add-fir-affine-optimization-fir-pass-pipeline/86190/6</pre>
</div>
</content>
</entry>
<entry>
<title>AVR: Add llvm.sincos intrinsic test (#148601)</title>
<updated>2025-07-25T01:50:07+00:00</updated>
<author>
<name>Matt Arsenault</name>
<email>Matthew.Arsenault@amd.com</email>
</author>
<published>2025-07-25T01:50:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=14e6390e84acaa9b6209922b8035df0931978f8f'/>
<id>14e6390e84acaa9b6209922b8035df0931978f8f</id>
<content type='text'>
Mostly to test libcall behavior; f64 case is broken</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Mostly to test libcall behavior; f64 case is broken</pre>
</div>
</content>
</entry>
</feed>
