Re: [PATCH] arm: unified syntax for libgcc clear_cache

2022-09-30 Thread Seija Kijin via Gcc-patches
Yes, please! On Tue, Sep 6, 2022 at 10:48 AM Kyrylo Tkachov wrote: > > Hi Seija, > > > -Original Message- > > From: Gcc-patches > bounces+kyrylo.tkachov=arm@gcc.gnu.org> On Behalf Of Seija Kijin via > > Gcc-patches > > Sent: Thursday, Augu

[PATCH] arm: unified syntax for libgcc clear_cache

2022-08-11 Thread Seija Kijin via Gcc-patches
The patch to convert all thumb1 code in libgcc to unified syntax omitted changing all swi instructions to the current name: svc. This patch fixes this case. --- libgcc/config/arm/lib1funcs.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libgcc/config/arm/lib1funcs.S b/libgc

[PATCH] libstdc++: Fixing Error: invalid type argument of unary '*' (have 'int')

2022-08-04 Thread Seija Kijin via Gcc-patches
Had an error compiling tiny-cuda-nn using gcc 12.1. With this minor patch, I recompiled and the build succeeded. No behavioral change. --- libstdc++-v3/include/bits/locale_facets_nonio.tcc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libstdc++-v3/include/bits/locale_fa

[PATCH] libiberty: Make strstr.c in libiberty ANSI compliant

2020-05-01 Thread Seija Kijin via Gcc-patches
The original code in libiberty says "FIXME" and then says it has not been validated to be ANSI compliant. However, this patch changes the function to match implementations that ARE compliant, and such code is in the public domain. I ran the test results, and there are no test failures. --- strstr