From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id CC6463858CDA; Fri, 28 Oct 2022 21:51:43 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org CC6463858CDA DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1666993903; bh=+5bFrNjCSHmeY7dFqIAD1jNS6c79X0e9W+UPlREWlXk=; h=From:To:Subject:Date:In-Reply-To:References:From; b=d8P6a+hz6r/aQfVL/BqLbsYvyhYafVqx91+WFdXpGWnMbB3fbcYVpAy0VftG3MQfx mamWk6ipIQXNJI21/TIVFKsn7s+sRBtonNen1glWqXPaTnlGYjPCgOW+Rnv+UWJumd Wya42A2oABsfQB4+9sgfcU22dh4gSDorX+05dn1I= From: "anlauf at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/107397] [10/11/12/13 Regression] ICE in gfc_arith_plus, at fortran/arith.cc:654 Date: Fri, 28 Oct 2022 21:51:43 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 13.0 X-Bugzilla-Keywords: ice-on-invalid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: anlauf at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P4 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 10.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D107397 --- Comment #6 from anlauf at gcc dot gnu.org --- (In reply to Steve Kargl from comment #5) > No. I have no idea how to add a testcase to git. > Every time I've tried, I end up deleting my git=20 > repository and grabbing a new clone. Not a pleasant > developer experience. The workflow with git is really simple: git add path/to/file ... git commit (git gcc-commit-mklog is a tailored version for working with the gcc repo.) To create a patch for submitting, git format-patch -1 (if you don't need fancy stuff like a patch series...) With "git rebase" you can do really many useful things you would never dream of with svn. It's also easy to remove a commit from your local worktree or reorder commi= ts (using rebase), or resetting your worktree, ... I really think you just need a good primer.=