On Tue, Jan 14, 2025 at 4:35 PM Jennifer Schmitz via Gcc
wrote:
>
> We are working on improving codegen for the following test cases (for all
> integer types T):
>
> T foo (T x, T y)
> {
> T diff = x - y;
> return x > y ? diff : -diff;
> }
>
> T bar (T x, T y)
> {
> T diff1 = x - y;
> T d
We are working on improving codegen for the following test cases (for all
integer types T):
T foo (T x, T y)
{
T diff = x - y;
return x > y ? diff : -diff;
}
T bar (T x, T y)
{
T diff1 = x - y;
T diff2 = y - x;
return x > y ? diff1 : diff2;
}
For signed integers, we already proposed a
On Mon, Jan 13, 2025 at 07:18:05AM -0700, Jeff Law via Gcc wrote:
>
>
> On 1/13/25 2:56 AM, Stefan Schulze Frielinghaus via Gcc wrote:
> > Hi everyone,
> >
> > In order to better test our s390 builtins, I have been coming up with a
> > small tool in order to automatically generate tests. The to
On Mon, 13 Jan 2025 at 12:17, Ben Boeckel via Gcc wrote:
>
> On Mon, Jan 13, 2025 at 01:27:17 +, Hao Liu via Gcc wrote:
> > I'm new to GCC community, and try to contribute some patches.
> > I am having trouble setting git send-email with Outlook on Linux. Does
> > anyone have any successful ex
On 13/01/2025 01:27, Hao Liu via Gcc wrote:
Hi,
I'm new to GCC community, and try to contribute some patches.
I am having trouble setting git send-email with Outlook on Linux. Does anyone
have any successful experiences to share?
I assume from your email address that you're referring to the