[Bug testsuite/107171] New test case gcc.target/powerpc/pr105586.c fails after its introduction in r13-2525-gbec35caafae8db

2022-11-29 Thread jskumari at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=107171

Surya Kumari Jangala  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|ASSIGNED|RESOLVED

--- Comment #5 from Surya Kumari Jangala  ---
Fixed the failing testcase.

[Bug testsuite/107171] New test case gcc.target/powerpc/pr105586.c fails after its introduction in r13-2525-gbec35caafae8db

2022-11-08 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=107171

--- Comment #4 from CVS Commits  ---
The master branch has been updated by Surya Kumari Jangala
:

https://gcc.gnu.org/g:7ca912b46e0eb45ebefeb0eda4c28afe1513d272

commit r13-3805-g7ca912b46e0eb45ebefeb0eda4c28afe1513d272
Author: Surya Kumari Jangala 
Date:   Thu Oct 13 09:18:15 2022 -0500

testsuite: Fix failure in test pr105586.c [PR107171]

The test pr105586.c fails on a big endian system when run in 32bit
mode. The failure occurs as the test case does not guard against
unsupported __int128.

2022-10-13  Surya Kumari Jangala  

gcc/testsuite/
PR testsuite/107171
* gcc.target/powerpc/pr105586.c: Guard against unsupported
__int128.

[Bug testsuite/107171] New test case gcc.target/powerpc/pr105586.c fails after its introduction in r13-2525-gbec35caafae8db

2022-10-06 Thread bergner at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=107171

--- Comment #3 from Peter Bergner  ---
(In reply to Andrew Pinski from comment #2)
> /* { dg-require-effective-target int128 } */
> might be better if it is just __int128 that is causing the issue.

Good point!  Thanks Andrew.

[Bug testsuite/107171] New test case gcc.target/powerpc/pr105586.c fails after its introduction in r13-2525-gbec35caafae8db

2022-10-06 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=107171

Andrew Pinski  changed:

   What|Removed |Added

   Keywords||testsuite-fail

--- Comment #2 from Andrew Pinski  ---
(In reply to Peter Bergner from comment #1)
> Assigning to Surya.
> 
> It looks like the test case just needs a...
> 
> /* { dg-require-effective-target lp64 } */
> 
> ...line to disable it on -m32 compiles, since __int128 isn't supported there.

/* { dg-require-effective-target int128 } */
might be better if it is just __int128 that is causing the issue.

[Bug testsuite/107171] New test case gcc.target/powerpc/pr105586.c fails after its introduction in r13-2525-gbec35caafae8db

2022-10-06 Thread bergner at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=107171

Peter Bergner  changed:

   What|Removed |Added

   Last reconfirmed||2022-10-06
   Assignee|unassigned at gcc dot gnu.org  |jskumari at gcc dot 
gnu.org
 Ever confirmed|0   |1
 Status|UNCONFIRMED |ASSIGNED

--- Comment #1 from Peter Bergner  ---
Assigning to Surya.

It looks like the test case just needs a...

/* { dg-require-effective-target lp64 } */

...line to disable it on -m32 compiles, since __int128 isn't supported there.