public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug middle-end/105566] New: new test case ICEs
@ 2022-05-11 13:41 seurer at gcc dot gnu.org
  2022-05-11 13:49 ` [Bug middle-end/105566] [13 regression] ICE in gfortran.dg/ubsan/bind-c-intent-out-2.f90 after r13-222-g28896b38fabce8 rguenth at gcc dot gnu.org
  2022-05-11 14:12 ` siddhesh at gcc dot gnu.org
  0 siblings, 2 replies; 3+ messages in thread
From: seurer at gcc dot gnu.org @ 2022-05-11 13:41 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 105566
           Summary: new test case ICEs
           Product: gcc
           Version: 13.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: middle-end
          Assignee: unassigned at gcc dot gnu.org
          Reporter: seurer at gcc dot gnu.org
  Target Milestone: ---

g:28896b38fabce818e59266b0063a46b3bc1b700f, r13-222-g28896b38fabce8
make  -k check-gcc
RUNTESTFLAGS="ubsan.exp=gfortran.dg/ubsan/bind-c-intent-out-2.f90"
FAIL: gfortran.dg/ubsan/bind-c-intent-out-2.f90   -O1  (internal compiler
error: Segmentation fault)
FAIL: gfortran.dg/ubsan/bind-c-intent-out-2.f90   -O1  (test for excess errors)
FAIL: gfortran.dg/ubsan/bind-c-intent-out-2.f90   -O2  (internal compiler
error: Segmentation fault)
FAIL: gfortran.dg/ubsan/bind-c-intent-out-2.f90   -O2  (test for excess errors)
FAIL: gfortran.dg/ubsan/bind-c-intent-out-2.f90   -O3 -fomit-frame-pointer
-funroll-loops -fpeel-loops -ftracer -finline-functions  (internal compiler
error: Segmentation fault)
FAIL: gfortran.dg/ubsan/bind-c-intent-out-2.f90   -O3 -fomit-frame-pointer
-funroll-loops -fpeel-loops -ftracer -finline-functions  (test for excess
errors)
FAIL: gfortran.dg/ubsan/bind-c-intent-out-2.f90   -O3 -g  (internal compiler
error: Segmentation fault)
FAIL: gfortran.dg/ubsan/bind-c-intent-out-2.f90   -O3 -g  (test for excess
errors)
FAIL: gfortran.dg/ubsan/bind-c-intent-out-2.f90   -Os  (internal compiler
error: Segmentation fault)
FAIL: gfortran.dg/ubsan/bind-c-intent-out-2.f90   -Os  (test for excess errors)


spawn -ignore SIGHUP
/home/seurer/gcc/git/build/gcc-test/gcc/testsuite/gfortran/../../gfortran
-B/home/seurer/gcc/git/build/gcc-test/gcc/testsuite/gfortran/../../
-B/home/seurer/gcc/git/build/gcc-test/powerpc64le-unknown-linux-gnu/./libgfortran/
/home/seurer/gcc/git/gcc-test/gcc/testsuite/gfortran.dg/ubsan/bind-c-intent-out-2.f90
-fdiagnostics-plain-output
-B/home/seurer/gcc/git/build/gcc-test/powerpc64le-unknown-linux-gnu/./libsanitizer/
-B/home/seurer/gcc/git/build/gcc-test/powerpc64le-unknown-linux-gnu/./libsanitizer/ubsan/
-L/home/seurer/gcc/git/build/gcc-test/powerpc64le-unknown-linux-gnu/./libsanitizer/ubsan/.libs
-fdiagnostics-plain-output -O1 -fsanitize=undefined -fcheck=all
-B/home/seurer/gcc/git/build/gcc-test/powerpc64le-unknown-linux-gnu/./libgfortran/.libs
-L/home/seurer/gcc/git/build/gcc-test/powerpc64le-unknown-linux-gnu/./libgfortran/.libs
-L/home/seurer/gcc/git/build/gcc-test/powerpc64le-unknown-linux-gnu/./libgfortran/.libs
-L/home/seurer/gcc/git/build/gcc-test/powerpc64le-unknown-linux-gnu/./libatomic/.libs
-B/home/seurer/gcc/git/build/gcc-test/powerpc64le-unknown-linux-gnu/./libquadmath/.libs
-L/home/seurer/gcc/git/build/gcc-test/powerpc64le-unknown-linux-gnu/./libquadmath/.libs
-L/home/seurer/gcc/git/build/gcc-test/powerpc64le-unknown-linux-gnu/./libquadmath/.libs
-lm -o ./bind-c-intent-out-2.exe^M
during GIMPLE pass: ubsan^M
/home/seurer/gcc/git/gcc-test/gcc/testsuite/gfortran.dg/ubsan/bind-c-intent-out-2.f90:39:19:
internal compiler error: Segmentation fault^M
0x10caea33 crash_signal^M
        /home/seurer/gcc/git/gcc-test/gcc/toplev.cc:322^M
0x11101880 contains_struct_check(tree_node*, tree_node_structure_enum, char
const*, int, char const*)^M
        /home/seurer/gcc/git/gcc-test/gcc/tree.h:3570^M
0x11101880 build_call_expr_loc_array(unsigned int, tree_node*, int,
tree_node**)^M
        /home/seurer/gcc/git/gcc-test/gcc/tree.cc:10629^M
0x11101a63 build_call_expr_loc(unsigned int, tree_node*, int, ...)^M
        /home/seurer/gcc/git/gcc-test/gcc/tree.cc:10662^M
0x10ce9027 instrument_object_size^M
        /home/seurer/gcc/git/gcc-test/gcc/ubsan.cc:2173^M
0x10cf165b execute^M
        /home/seurer/gcc/git/gcc-test/gcc/ubsan.cc:2428^M


commit 28896b38fabce818e59266b0063a46b3bc1b700f (HEAD, refs/bisect/bad)
Author: Siddhesh Poyarekar <siddhesh@gotplt.org>
Date:   Tue May 10 12:51:42 2022 +0530

    middle-end/70090: Dynamic sizes for -fsanitize=object-size

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

* [Bug middle-end/105566] [13 regression] ICE in gfortran.dg/ubsan/bind-c-intent-out-2.f90 after r13-222-g28896b38fabce8
  2022-05-11 13:41 [Bug middle-end/105566] New: new test case ICEs seurer at gcc dot gnu.org
@ 2022-05-11 13:49 ` rguenth at gcc dot gnu.org
  2022-05-11 14:12 ` siddhesh at gcc dot gnu.org
  1 sibling, 0 replies; 3+ messages in thread
From: rguenth at gcc dot gnu.org @ 2022-05-11 13:49 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |13.0

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

* [Bug middle-end/105566] [13 regression] ICE in gfortran.dg/ubsan/bind-c-intent-out-2.f90 after r13-222-g28896b38fabce8
  2022-05-11 13:41 [Bug middle-end/105566] New: new test case ICEs seurer at gcc dot gnu.org
  2022-05-11 13:49 ` [Bug middle-end/105566] [13 regression] ICE in gfortran.dg/ubsan/bind-c-intent-out-2.f90 after r13-222-g28896b38fabce8 rguenth at gcc dot gnu.org
@ 2022-05-11 14:12 ` siddhesh at gcc dot gnu.org
  1 sibling, 0 replies; 3+ messages in thread
From: siddhesh at gcc dot gnu.org @ 2022-05-11 14:12 UTC (permalink / raw)
  To: gcc-bugs

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

Siddhesh Poyarekar <siddhesh at gcc dot gnu.org> changed:

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

--- Comment #1 from Siddhesh Poyarekar <siddhesh at gcc dot gnu.org> ---
I pushed a fix for this moments ago:

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70090#c8

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

end of thread, other threads:[~2022-05-11 14:12 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-11 13:41 [Bug middle-end/105566] New: new test case ICEs seurer at gcc dot gnu.org
2022-05-11 13:49 ` [Bug middle-end/105566] [13 regression] ICE in gfortran.dg/ubsan/bind-c-intent-out-2.f90 after r13-222-g28896b38fabce8 rguenth at gcc dot gnu.org
2022-05-11 14:12 ` siddhesh 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).