From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2010) id 1BA57385735E; Mon, 16 Oct 2023 22:21:14 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 1BA57385735E DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1697494874; bh=rC23vHCG01kXVv6JYj8NDAOSizU0eKZZygcJeWm0qYU=; h=From:To:Subject:Date:From; b=hPAH1Y1UIzjob4KQvJaWEKfSEt2dacDc9G4YCX2NbSM7yldDZqS7ipOGEg1rCqskR dG39N/nmlqCANz/X1pwyiJqaMF44ICPzxp0rf+IGpx420ugH5tDc/daquEhjVCB1aX FLso094HcLxgspyx+XBZsB2kMkAMb9o9XFrjJ9nw= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Eric Gallager To: gcc-cvs@gcc.gnu.org Subject: [gcc(refs/users/egallager/heads/github-notices)] Merge pull request #2 from cooljeanius/me/CI X-Act-Checkin: gcc X-Git-Author: Eric Gallager X-Git-Refname: refs/users/egallager/heads/github-notices X-Git-Oldrev: 1f9d810d83f27f05d8f91c4c67b0421187487bfd X-Git-Newrev: 57f89bbe63befaa3081b5890e4bafd2dae8a2e02 Message-Id: <20231016222114.1BA57385735E@sourceware.org> Date: Mon, 16 Oct 2023 22:21:14 +0000 (GMT) List-Id: https://gcc.gnu.org/g:57f89bbe63befaa3081b5890e4bafd2dae8a2e02 commit 57f89bbe63befaa3081b5890e4bafd2dae8a2e02 Merge: 1f9d810d83f2 b7c6ea0a3a14 Author: Eric Gallager Date: Mon Oct 16 02:56:34 2023 -0400 Merge pull request #2 from cooljeanius/me/CI Add linux ci (thanks to @talregev for getting it started) Diff: .github/workflows/linux.yaml | 167 ++++++++++ gcc/cp/module.cc | 2 - gcc/fortran/gfortran.h | 1 + gcc/fortran/match.cc | 9 +- gcc/fortran/openmp.cc | 62 +++- gcc/fortran/parse.cc | 8 +- gcc/fortran/trans-array.cc | 28 +- gcc/fortran/trans-decl.cc | 126 ++++++++ gcc/fortran/trans-openmp.cc | 77 +++-- gcc/gimplify.cc | 166 ++++++++-- gcc/testsuite/c-c++-common/gomp/allocate-14.c | 2 +- gcc/testsuite/c-c++-common/gomp/allocate-15.c | 2 +- gcc/testsuite/c-c++-common/gomp/allocate-9.c | 2 +- gcc/testsuite/gcc.dg/bitint-38.c | 51 ++- gcc/testsuite/gcc.dg/bitint-39.c | 43 +++ gcc/testsuite/gfortran.dg/gomp/allocate-10.f90 | 75 +++++ gcc/testsuite/gfortran.dg/gomp/allocate-11.f90 | 33 ++ gcc/testsuite/gfortran.dg/gomp/allocate-12.f90 | 24 ++ gcc/testsuite/gfortran.dg/gomp/allocate-13.f90 | 25 ++ gcc/testsuite/gfortran.dg/gomp/allocate-14.f90 | 95 ++++++ gcc/testsuite/gfortran.dg/gomp/allocate-15.f90 | 38 +++ gcc/testsuite/gfortran.dg/gomp/allocate-4.f90 | 4 +- gcc/testsuite/gfortran.dg/gomp/allocate-7.f90 | 10 - gcc/testsuite/gfortran.dg/gomp/allocate-8.f90 | 29 ++ gcc/testsuite/gfortran.dg/gomp/allocate-9.f90 | 112 +++++++ gcc/tree-core.h | 10 +- gcc/tree.cc | 9 - gcc/tree.h | 12 +- gcc/value-range-storage.cc | 20 +- gcc/value-range-storage.h | 6 +- gcc/wide-int.h | 25 +- libgomp/libgomp.texi | 386 ++++++++++++++++++++++- libgomp/testsuite/libgomp.fortran/allocate-5.f90 | 87 +++++ libgomp/testsuite/libgomp.fortran/allocate-6.f90 | 123 ++++++++ libgomp/testsuite/libgomp.fortran/allocate-7.f90 | 342 ++++++++++++++++++++ libgomp/testsuite/libgomp.fortran/allocate-8.f90 | 99 ++++++ 36 files changed, 2134 insertions(+), 176 deletions(-)