public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug testsuite/110230] New: new test case gcc.target/powerpc/pr109932-1.c in r14-1705-g2764335bd336f2 fails for 32 bits
@ 2023-06-12 20:59 seurer at gcc dot gnu.org
  2023-06-13  1:56 ` [Bug testsuite/110230] " linkw at gcc dot gnu.org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: seurer at gcc dot gnu.org @ 2023-06-12 20:59 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110230

            Bug ID: 110230
           Summary: new test case gcc.target/powerpc/pr109932-1.c in
                    r14-1705-g2764335bd336f2 fails for 32 bits
           Product: gcc
           Version: 14.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: testsuite
          Assignee: unassigned at gcc dot gnu.org
          Reporter: seurer at gcc dot gnu.org
  Target Milestone: ---

g:2764335bd336f2360d465ffcaa8f2c33f7321ab4, r14-1705-g2764335bd336f2
make  -k check-gcc RUNTESTFLAGS="--target_board=unix'{-m32}'
powerpc.exp=gcc.target/powerpc/pr109932-1.c"
FAIL: gcc.target/powerpc/pr109932-1.c  (test for errors, line 14)
FAIL: gcc.target/powerpc/pr109932-1.c (test for excess errors)
# of unexpected failures        2


commit ff83d1b47aadcdaf80a4fda84b0dc00bb2cd3641 (HEAD)
Author: Kewen Lin <linkw@linux.ibm.com>
Date:   Mon Jun 12 01:08:22 2023 -0500

    rs6000: Guard __builtin_{un,}pack_vector_int128 with vsx [PR109932]



spawn -ignore SIGHUP /home/seurer/gcc/git/build/gcc-test/gcc/xgcc
-B/home/seurer/gcc/git/build/gcc-test/gcc/
/home/seurer/gcc/git/gcc-test/gcc/testsuite/gcc.target/powerpc/pr109932-1.c
-m32 -fdiagnostics-plain-output -maltivec -mno-vsx -S -o pr109932-1.s
/home/seurer/gcc/git/gcc-test/gcc/testsuite/gcc.target/powerpc/pr109932-1.c:8:22:
error: '__int128' is not supported on this target
/home/seurer/gcc/git/gcc-test/gcc/testsuite/gcc.target/powerpc/pr109932-1.c: In
function 'testVectorInt128Pack':
/home/seurer/gcc/git/gcc-test/gcc/testsuite/gcc.target/powerpc/pr109932-1.c:14:3:
note: use '-flax-vector-conversions' to permit conversions between vectors with
differing element types or numbers of subparts
/home/seurer/gcc/git/gcc-test/gcc/testsuite/gcc.target/powerpc/pr109932-1.c:14:15:
error: incompatible types when assigning to type '__vector signed int' {aka
'__vector(4) int'} from type '__vector __int128' {aka '__vector(1)
<unnamed-signed:128>'}
compiler exited with status 1

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug testsuite/110230] new test case gcc.target/powerpc/pr109932-1.c in r14-1705-g2764335bd336f2 fails for 32 bits
  2023-06-12 20:59 [Bug testsuite/110230] New: new test case gcc.target/powerpc/pr109932-1.c in r14-1705-g2764335bd336f2 fails for 32 bits seurer at gcc dot gnu.org
@ 2023-06-13  1:56 ` linkw at gcc dot gnu.org
  2023-06-13  8:08 ` cvs-commit at gcc dot gnu.org
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: linkw at gcc dot gnu.org @ 2023-06-13  1:56 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110230

Kewen Lin <linkw at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Assignee|unassigned at gcc dot gnu.org      |linkw at gcc dot gnu.org
   Last reconfirmed|                            |2023-06-13
             Status|UNCONFIRMED                 |ASSIGNED
     Ever confirmed|0                           |1

--- Comment #1 from Kewen Lin <linkw at gcc dot gnu.org> ---
Mine, posted and committed the previous version which was missing int128
effective target.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug testsuite/110230] new test case gcc.target/powerpc/pr109932-1.c in r14-1705-g2764335bd336f2 fails for 32 bits
  2023-06-12 20:59 [Bug testsuite/110230] New: new test case gcc.target/powerpc/pr109932-1.c in r14-1705-g2764335bd336f2 fails for 32 bits seurer at gcc dot gnu.org
  2023-06-13  1:56 ` [Bug testsuite/110230] " linkw at gcc dot gnu.org
@ 2023-06-13  8:08 ` cvs-commit at gcc dot gnu.org
  2023-06-13  8:12 ` linkw at gcc dot gnu.org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2023-06-13  8:08 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110230

--- Comment #2 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Kewen Lin <linkw@gcc.gnu.org>:

https://gcc.gnu.org/g:16eb9d69079d769b2aa2c07ce54aca20f5547c14

commit r14-1776-g16eb9d69079d769b2aa2c07ce54aca20f5547c14
Author: Kewen Lin <linkw@linux.ibm.com>
Date:   Tue Jun 13 03:04:54 2023 -0500

    testsuite: Check int128 effective target for pr109932-{1,2}.c [PR110230]

    This patch is to make newly added test cases pr109932-{1,2}.c
    check int128 effective target to avoid unsupported type error
    on 32-bit.  I did hit this failure during testing and fixed
    it, but made a stupid mistake not updating the local formatted
    patch which was actually out of date.

            PR testsuite/110230
            PR target/109932

    gcc/testsuite/ChangeLog:

            * gcc.target/powerpc/pr109932-1.c: Adjust with int128 effective
target.
            * gcc.target/powerpc/pr109932-2.c: Ditto.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug testsuite/110230] new test case gcc.target/powerpc/pr109932-1.c in r14-1705-g2764335bd336f2 fails for 32 bits
  2023-06-12 20:59 [Bug testsuite/110230] New: new test case gcc.target/powerpc/pr109932-1.c in r14-1705-g2764335bd336f2 fails for 32 bits seurer at gcc dot gnu.org
  2023-06-13  1:56 ` [Bug testsuite/110230] " linkw at gcc dot gnu.org
  2023-06-13  8:08 ` cvs-commit at gcc dot gnu.org
@ 2023-06-13  8:12 ` linkw at gcc dot gnu.org
  2023-06-20  3:20 ` cvs-commit at gcc dot gnu.org
  2023-06-20  3:21 ` cvs-commit at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: linkw at gcc dot gnu.org @ 2023-06-13  8:12 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110230

Kewen Lin <linkw at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |FIXED
             Status|ASSIGNED                    |RESOLVED

--- Comment #3 from Kewen Lin <linkw at gcc dot gnu.org> ---
Should be fixed on trunk.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug testsuite/110230] new test case gcc.target/powerpc/pr109932-1.c in r14-1705-g2764335bd336f2 fails for 32 bits
  2023-06-12 20:59 [Bug testsuite/110230] New: new test case gcc.target/powerpc/pr109932-1.c in r14-1705-g2764335bd336f2 fails for 32 bits seurer at gcc dot gnu.org
                   ` (2 preceding siblings ...)
  2023-06-13  8:12 ` linkw at gcc dot gnu.org
@ 2023-06-20  3:20 ` cvs-commit at gcc dot gnu.org
  2023-06-20  3:21 ` cvs-commit at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2023-06-20  3:20 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110230

--- Comment #4 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The releases/gcc-12 branch has been updated by Kewen Lin <linkw@gcc.gnu.org>:

https://gcc.gnu.org/g:4591c2c8a6b15ca99ba049d84e0e694f12db4f60

commit r12-9714-g4591c2c8a6b15ca99ba049d84e0e694f12db4f60
Author: Kewen Lin <linkw@linux.ibm.com>
Date:   Tue Jun 13 03:04:54 2023 -0500

    testsuite: Check int128 effective target for pr109932-{1,2}.c [PR110230]

    This patch is to make newly added test cases pr109932-{1,2}.c
    check int128 effective target to avoid unsupported type error
    on 32-bit.  I did hit this failure during testing and fixed
    it, but made a stupid mistake not updating the local formatted
    patch which was actually out of date.

            PR testsuite/110230
            PR target/109932

    gcc/testsuite/ChangeLog:

            * gcc.target/powerpc/pr109932-1.c: Adjust with int128 effective
target.
            * gcc.target/powerpc/pr109932-2.c: Ditto.

    (cherry picked from commit 16eb9d69079d769b2aa2c07ce54aca20f5547c14)

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug testsuite/110230] new test case gcc.target/powerpc/pr109932-1.c in r14-1705-g2764335bd336f2 fails for 32 bits
  2023-06-12 20:59 [Bug testsuite/110230] New: new test case gcc.target/powerpc/pr109932-1.c in r14-1705-g2764335bd336f2 fails for 32 bits seurer at gcc dot gnu.org
                   ` (3 preceding siblings ...)
  2023-06-20  3:20 ` cvs-commit at gcc dot gnu.org
@ 2023-06-20  3:21 ` cvs-commit at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2023-06-20  3:21 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110230

--- Comment #5 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The releases/gcc-13 branch has been updated by Kewen Lin <linkw@gcc.gnu.org>:

https://gcc.gnu.org/g:4b4a21c93406aef276fbff00d3e9491285d7b4a9

commit r13-7458-g4b4a21c93406aef276fbff00d3e9491285d7b4a9
Author: Kewen Lin <linkw@linux.ibm.com>
Date:   Tue Jun 13 03:04:54 2023 -0500

    testsuite: Check int128 effective target for pr109932-{1,2}.c [PR110230]

    This patch is to make newly added test cases pr109932-{1,2}.c
    check int128 effective target to avoid unsupported type error
    on 32-bit.  I did hit this failure during testing and fixed
    it, but made a stupid mistake not updating the local formatted
    patch which was actually out of date.

            PR testsuite/110230
            PR target/109932

    gcc/testsuite/ChangeLog:

            * gcc.target/powerpc/pr109932-1.c: Adjust with int128 effective
target.
            * gcc.target/powerpc/pr109932-2.c: Ditto.

    (cherry picked from commit 16eb9d69079d769b2aa2c07ce54aca20f5547c14)

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2023-06-20  3:21 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-12 20:59 [Bug testsuite/110230] New: new test case gcc.target/powerpc/pr109932-1.c in r14-1705-g2764335bd336f2 fails for 32 bits seurer at gcc dot gnu.org
2023-06-13  1:56 ` [Bug testsuite/110230] " linkw at gcc dot gnu.org
2023-06-13  8:08 ` cvs-commit at gcc dot gnu.org
2023-06-13  8:12 ` linkw at gcc dot gnu.org
2023-06-20  3:20 ` cvs-commit at gcc dot gnu.org
2023-06-20  3:21 ` cvs-commit at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).