Hi, I'm trying to run the test suite on the master branch. These are the commands I ran by following https://gcc.gnu.org/contribute.html: $ make bootstrap $ make -k check -j22 I added -j22 to utilise all my CPU cores. However, I'm encountering some test failures even when I didn't change anything in the code. Is this expected/normal? Here are some of the test failures: FAIL: gfortran.dg/bound_4.f90 -O0 (internal compiler error: 'verify_gimple' failed) FAIL: gfortran.dg/bound_4.f90 -O0 (test for excess errors) Running /home/zliew/_stuff/repos/gcc/gcc/testsuite/g++.dg/bprob/bprob.exp ... FAIL: gfortran.dg/bound_4.f90 -O1 (internal compiler error: 'verify_gimple' failed) FAIL: gfortran.dg/bound_4.f90 -O1 (test for excess errors) FAIL: gfortran.dg/bound_4.f90 -O2 (internal compiler error: 'verify_gimple' failed) FAIL: gfortran.dg/bound_4.f90 -O2 (test for excess errors) Running /home/zliew/_stuff/repos/gcc/gcc/testsuite/g++.dg/charset/charset.exp ... FAIL: gfortran.dg/bound_4.f90 -O3 -fomit-frame-pointer -funroll-loops -fpeel-loops -ftracer -finline-functions (internal compiler error: 'verify_gimple' failed) FAIL: gfortran.dg/bound_4.f90 -O3 -fomit-frame-pointer -funroll-loops -fpeel-loops -ftracer -finline-functions (test for excess errors) FAIL: gfortran.dg/bound_4.f90 -O3 -g (internal compiler error: 'verify_gimple' failed) FAIL: gfortran.dg/bound_4.f90 -O3 -g (test for excess errors) FAIL: gfortran.dg/bound_4.f90 -Os (internal compiler error: 'verify_gimple' failed) FAIL: gfortran.dg/bound_4.f90 -Os (test for excess errors) FAIL: gfortran.dg/bounds_check_14.f90 -O0 (internal compiler error: 'verify_gimple' failed) FAIL: gfortran.dg/bounds_check_14.f90 -O0 (test for excess errors) FAIL: gfortran.dg/bounds_check_14.f90 -O1 (internal compiler error: 'verify_gimple' failed) FAIL: gfortran.dg/bounds_check_14.f90 -O1 (test for excess errors) FAIL: gfortran.dg/bounds_check_14.f90 -O2 (internal compiler error: 'verify_gimple' failed) FAIL: gfortran.dg/bounds_check_14.f90 -O2 (test for excess errors) FAIL: gfortran.dg/bounds_check_14.f90 -O3 -fomit-frame-pointer -funroll-loops -fpeel-loops -ftracer -finline-functions (internal compiler error: 'verify_gimple' failed) FAIL: gfortran.dg/bounds_check_14.f90 -O3 -fomit-frame-pointer -funroll-loops -fpeel-loops -ftracer -finline-functions (test for excess errors) FAIL: gfortran.dg/bounds_check_14.f90 -O3 -g (internal compiler error: 'verify_gimple' failed) FAIL: gfortran.dg/bounds_check_14.f90 -O3 -g (test for excess errors) FAIL: gfortran.dg/bounds_check_14.f90 -Os (internal compiler error: 'verify_gimple' failed) FAIL: gfortran.dg/bounds_check_14.f90 -Os (test for excess errors) Context: I'm a new contributor, looking to contribute an optimization to fix this bug: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95424. In order to test the patch, I'm trying to run the testsuite before and after the patch, during which I encountered these failures.