<feed xmlns='http://www.w3.org/2005/Atom'>
<title>llvm-project.git/llvm/test/CodeGen/AVR/inline-asm, branch users/nico/python-2</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][AVR] Improve compatibility of inline assembly with avr-gcc (#136534)</title>
<updated>2025-04-23T10:42:07+00:00</updated>
<author>
<name>Ben Shi</name>
<email>2283975856@qq.com</email>
</author>
<published>2025-04-23T10:42:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=b0524f332958b6e593868533127fd0651bdcf553'/>
<id>b0524f332958b6e593868533127fd0651bdcf553</id>
<content type='text'>
Allow the value 64 to be round up to 0 for constraint 'I'.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Allow the value 64 to be round up to 0 for constraint 'I'.</pre>
</div>
</content>
</entry>
<entry>
<title>[AVR] Fix a bug in selection of ANY_EXTEND (#132398)</title>
<updated>2025-03-26T14:15:40+00:00</updated>
<author>
<name>Ben Shi</name>
<email>2283975856@qq.com</email>
</author>
<published>2025-03-26T14:15:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=1db206d1c8d48c107a2e29a1bf6ba2768df2ef7d'/>
<id>1db206d1c8d48c107a2e29a1bf6ba2768df2ef7d</id>
<content type='text'>
This is a walk around solution of
https://github.com/llvm/llvm-project/issues/132203</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is a walk around solution of
https://github.com/llvm/llvm-project/issues/132203</pre>
</div>
</content>
</entry>
<entry>
<title>[AVR,test] Change llc -march= to -mtriple=</title>
<updated>2024-12-15T18:26:33+00:00</updated>
<author>
<name>Fangrui Song</name>
<email>i@maskray.me</email>
</author>
<published>2024-12-15T18:26:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=9ef1d37ffb5f56a9b949a6307bbb16c2ea0130e3'/>
<id>9ef1d37ffb5f56a9b949a6307bbb16c2ea0130e3</id>
<content type='text'>
Similar to 806761a7629df268c8aed49657aeccffa6bca449

-mtriple= specifies the full target triple while -march= merely sets the
architecture part of the default target triple, leaving a target triple which
may not make sense.

Therefore, -march= is error-prone and not recommended for tests without a target
triple. The issue has been benign as we recognize avr-apple-darwin as ELF instead
of rejecting it outrightly.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Similar to 806761a7629df268c8aed49657aeccffa6bca449

-mtriple= specifies the full target triple while -march= merely sets the
architecture part of the default target triple, leaving a target triple which
may not make sense.

Therefore, -march= is error-prone and not recommended for tests without a target
triple. The issue has been benign as we recognize avr-apple-darwin as ELF instead
of rejecting it outrightly.
</pre>
</div>
</content>
</entry>
<entry>
<title>[AVR] Simplify eocoding of load/store instructions (#118279)</title>
<updated>2024-12-05T05:05:25+00:00</updated>
<author>
<name>Ben Shi</name>
<email>2283975856@qq.com</email>
</author>
<published>2024-12-05T05:05:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=dba0861cd7aa2717b0f36c76d77c097765f6ad57'/>
<id>dba0861cd7aa2717b0f36c76d77c097765f6ad57</id>
<content type='text'>
Fixes https://github.com/llvm/llvm-project/issues/113774</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes https://github.com/llvm/llvm-project/issues/113774</pre>
</div>
</content>
</entry>
<entry>
<title>[AVR] Convert tests to opaque pointers (NFC)</title>
<updated>2024-02-05T12:55:50+00:00</updated>
<author>
<name>Nikita Popov</name>
<email>npopov@redhat.com</email>
</author>
<published>2024-02-05T12:55:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=7bdc80f35c325d148b1ddbdfce7dea8c6ba7af84'/>
<id>7bdc80f35c325d148b1ddbdfce7dea8c6ba7af84</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[AVR] Enable sub register liveness</title>
<updated>2023-06-10T16:16:35+00:00</updated>
<author>
<name>Ben Shi</name>
<email>2283975856@qq.com</email>
</author>
<published>2023-06-10T03:22:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=cef723a0feb9787ac7efd9a7762a1a3a07895d2c'/>
<id>cef723a0feb9787ac7efd9a7762a1a3a07895d2c</id>
<content type='text'>
Reviewed By: Patryk27

Differential Revision: https://reviews.llvm.org/D152606
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Reviewed By: Patryk27

Differential Revision: https://reviews.llvm.org/D152606
</pre>
</div>
</content>
</entry>
<entry>
<title>[AVR][NFC] Fix errors in commit 6e57f68e41c92936b9ef3a4e6fb286e8805a9fbc</title>
<updated>2023-04-10T03:17:06+00:00</updated>
<author>
<name>Ben Shi</name>
<email>powerman1st@163.com</email>
</author>
<published>2023-04-10T03:13:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=aa18091124b24f25c84371dff1134ccc9adba145'/>
<id>aa18091124b24f25c84371dff1134ccc9adba145</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[AVR] Reject invalid LDD instruction with explicit error</title>
<updated>2023-04-10T02:34:45+00:00</updated>
<author>
<name>Ben Shi</name>
<email>powerman1st@163.com</email>
</author>
<published>2023-04-09T09:37:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=6e57f68e41c92936b9ef3a4e6fb286e8805a9fbc'/>
<id>6e57f68e41c92936b9ef3a4e6fb286e8805a9fbc</id>
<content type='text'>
We should reject "ldd Rn, X" with explicit error message
rather than "llvm_unreachable" in llvm's release build.

Fixes https://github.com/llvm/llvm-project/issues/62012

Reviewed By: Miss_Grape

Differential Revision: https://reviews.llvm.org/D147877
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We should reject "ldd Rn, X" with explicit error message
rather than "llvm_unreachable" in llvm's release build.

Fixes https://github.com/llvm/llvm-project/issues/62012

Reviewed By: Miss_Grape

Differential Revision: https://reviews.llvm.org/D147877
</pre>
</div>
</content>
</entry>
<entry>
<title>[AVR] Fix incorrectly printed global symbol operands in inline-asm</title>
<updated>2023-01-20T01:45:00+00:00</updated>
<author>
<name>Ben Shi</name>
<email>powerman1st@163.com</email>
</author>
<published>2023-01-19T10:06:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=c919ea5b486041021a48b487145120fe0bcb70a8'/>
<id>c919ea5b486041021a48b487145120fe0bcb70a8</id>
<content type='text'>
Fixes https://github.com/llvm/llvm-project/issues/58879

Reviewed By: aykevl

Differential Revision: https://reviews.llvm.org/D142096
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes https://github.com/llvm/llvm-project/issues/58879

Reviewed By: aykevl

Differential Revision: https://reviews.llvm.org/D142096
</pre>
</div>
</content>
</entry>
<entry>
<title>[AVR] Fix a bug in AsmPrinter when printing inline-asm operands</title>
<updated>2023-01-13T06:23:41+00:00</updated>
<author>
<name>Ben Shi</name>
<email>powerman1st@163.com</email>
</author>
<published>2023-01-12T09:21:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=159e2a804d908edc92966f0485881eb78778c92d'/>
<id>159e2a804d908edc92966f0485881eb78778c92d</id>
<content type='text'>
Fixes https://github.com/llvm/llvm-project/issues/58878

Reviewed By: aykevl, Miss_Grape

Differential Revision: https://reviews.llvm.org/D141589
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes https://github.com/llvm/llvm-project/issues/58878

Reviewed By: aykevl, Miss_Grape

Differential Revision: https://reviews.llvm.org/D141589
</pre>
</div>
</content>
</entry>
</feed>
