<feed xmlns='http://www.w3.org/2005/Atom'>
<title>gcc.git, branch releases/gcc-13</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/gcc.git/'/>
<entry>
<title>Daily bump.</title>
<updated>2025-11-22T00:21:59+00:00</updated>
<author>
<name>GCC Administrator</name>
<email>gccadmin@gcc.gnu.org</email>
</author>
<published>2025-11-22T00:21:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/gcc.git/commit/?id=99b00dd5a0d5706d39e3527d844945b0708bec8b'/>
<id>99b00dd5a0d5706d39e3527d844945b0708bec8b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Daily bump.</title>
<updated>2025-11-21T00:21:50+00:00</updated>
<author>
<name>GCC Administrator</name>
<email>gccadmin@gcc.gnu.org</email>
</author>
<published>2025-11-21T00:21:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/gcc.git/commit/?id=da7486b778b27634ae8fe9e6efe76a8eae060ca8'/>
<id>da7486b778b27634ae8fe9e6efe76a8eae060ca8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Daily bump.</title>
<updated>2025-11-20T00:23:21+00:00</updated>
<author>
<name>GCC Administrator</name>
<email>gccadmin@gcc.gnu.org</email>
</author>
<published>2025-11-20T00:23:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/gcc.git/commit/?id=7f95d0c834f967c1ac6162cfc9f4fffac01784f6'/>
<id>7f95d0c834f967c1ac6162cfc9f4fffac01784f6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Daily bump.</title>
<updated>2025-11-19T00:23:37+00:00</updated>
<author>
<name>GCC Administrator</name>
<email>gccadmin@gcc.gnu.org</email>
</author>
<published>2025-11-19T00:23:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/gcc.git/commit/?id=e799d228276410d98e10daa927470c34fe198b5a'/>
<id>e799d228276410d98e10daa927470c34fe198b5a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>libstdc++: Fix error reporting for filesystem::rename on Windows [PR122726]</title>
<updated>2025-11-18T12:48:09+00:00</updated>
<author>
<name>Jonathan Wakely</name>
<email>jwakely@redhat.com</email>
</author>
<published>2025-11-17T21:01:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/gcc.git/commit/?id=fd465625338434a6b355c8018086838918670489'/>
<id>fd465625338434a6b355c8018086838918670489</id>
<content type='text'>
Use the __last_system_error() function and the system_category to
convert the Windows error to a generic one.

libstdc++-v3/ChangeLog:

	PR libstdc++/122726
	* src/filesystem/ops-common.h [_GLIBCXX_FILESYSTEM_IS_WINDOWS]
	(rename): Use __last_system_error to set errno accurately.
	* testsuite/27_io/filesystem/operations/rename.cc: Test
	error_code matches errc::no_such_file_or_directory.

(cherry picked from commit 77278e0292cd23f0d1ddbb5e6e18064e119bdd6f)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use the __last_system_error() function and the system_category to
convert the Windows error to a generic one.

libstdc++-v3/ChangeLog:

	PR libstdc++/122726
	* src/filesystem/ops-common.h [_GLIBCXX_FILESYSTEM_IS_WINDOWS]
	(rename): Use __last_system_error to set errno accurately.
	* testsuite/27_io/filesystem/operations/rename.cc: Test
	error_code matches errc::no_such_file_or_directory.

(cherry picked from commit 77278e0292cd23f0d1ddbb5e6e18064e119bdd6f)
</pre>
</div>
</content>
</entry>
<entry>
<title>middle-end: fix missing converts in vec_cond_expr simplification [PR122724]</title>
<updated>2025-11-18T11:09:06+00:00</updated>
<author>
<name>Richard Biener</name>
<email>rguenther@suse.de</email>
</author>
<published>2025-11-14T12:08:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/gcc.git/commit/?id=f3b7007bbabea686e133b001de1cac089afbd11f'/>
<id>f3b7007bbabea686e133b001de1cac089afbd11f</id>
<content type='text'>
The following avoids type inconsistencies in .COND_op generated by
simplifications of VEC_COND_EXPRs.

This is a backport of r14-5317-g20aa06490ab57da7729a24bae7c4ec2f5918ec91
but with a testcase that triggered an ICE on the 13 branch (with the
same root cause as the original PR).  It isn't an exact cherry-pick
because some of the patterns that were patched in the original fix don't
exist in GCC 13.

gcc/ChangeLog:

	PR tree-optimization/112469
	PR tree-optimization/122724
	* match.pd (cond ? op a : b -&gt; .COND_op (cond, a, b)): Add
	missing view_converts.

gcc/testsuite/ChangeLog:

	PR tree-optimization/112469
	PR tree-optimization/122724
	* gcc.target/aarch64/sve/pr122724.c: New test.

Co-Authored-By: Alex Coplan &lt;alex.coplan@arm.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The following avoids type inconsistencies in .COND_op generated by
simplifications of VEC_COND_EXPRs.

This is a backport of r14-5317-g20aa06490ab57da7729a24bae7c4ec2f5918ec91
but with a testcase that triggered an ICE on the 13 branch (with the
same root cause as the original PR).  It isn't an exact cherry-pick
because some of the patterns that were patched in the original fix don't
exist in GCC 13.

gcc/ChangeLog:

	PR tree-optimization/112469
	PR tree-optimization/122724
	* match.pd (cond ? op a : b -&gt; .COND_op (cond, a, b)): Add
	missing view_converts.

gcc/testsuite/ChangeLog:

	PR tree-optimization/112469
	PR tree-optimization/122724
	* gcc.target/aarch64/sve/pr122724.c: New test.

Co-Authored-By: Alex Coplan &lt;alex.coplan@arm.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Daily bump.</title>
<updated>2025-11-18T00:24:36+00:00</updated>
<author>
<name>GCC Administrator</name>
<email>gccadmin@gcc.gnu.org</email>
</author>
<published>2025-11-18T00:24:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/gcc.git/commit/?id=bb56bb1ff9bf8371038546ebb85e0ed984122dab'/>
<id>bb56bb1ff9bf8371038546ebb85e0ed984122dab</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Daily bump.</title>
<updated>2025-11-17T00:22:19+00:00</updated>
<author>
<name>GCC Administrator</name>
<email>gccadmin@gcc.gnu.org</email>
</author>
<published>2025-11-17T00:22:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/gcc.git/commit/?id=3190edd37ac3b0f9528764609bdff66a98bb525d'/>
<id>3190edd37ac3b0f9528764609bdff66a98bb525d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Daily bump.</title>
<updated>2025-11-16T00:21:58+00:00</updated>
<author>
<name>GCC Administrator</name>
<email>gccadmin@gcc.gnu.org</email>
</author>
<published>2025-11-16T00:21:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/gcc.git/commit/?id=210d61af836bf47e8ae787f1ae0c6376433e9287'/>
<id>210d61af836bf47e8ae787f1ae0c6376433e9287</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Daily bump.</title>
<updated>2025-11-15T00:25:27+00:00</updated>
<author>
<name>GCC Administrator</name>
<email>gccadmin@gcc.gnu.org</email>
</author>
<published>2025-11-15T00:25:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/gcc.git/commit/?id=164e31200695e1d1345587c8f130834e4eb2f9d3'/>
<id>164e31200695e1d1345587c8f130834e4eb2f9d3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
