From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 68017 invoked by alias); 5 Sep 2018 14:57:50 -0000 Mailing-List: contact fortran-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: fortran-owner@gcc.gnu.org Received: (qmail 67975 invoked by uid 89); 5 Sep 2018 14:57:49 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-26.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 spammy=H*Ad:U*aldot, complaints, HContent-Transfer-Encoding:8bit X-HELO: mail-wm0-f45.google.com Received: from mail-wm0-f45.google.com (HELO mail-wm0-f45.google.com) (74.125.82.45) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 05 Sep 2018 14:57:48 +0000 Received: by mail-wm0-f45.google.com with SMTP id y2-v6so8334330wma.1; Wed, 05 Sep 2018 07:57:48 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=Kdymvr/EsF6JaRycYOCvrfc/5/8c/uVupit1q71LyIQ=; b=MWdnvACFg5yhraQi0m0XKHShbJEw0xjR8m1AeqsgSDI/IuP8AjqNi1oxsxok522zTh ybAnzs5tHiV/yzcahPF7YNDQxHu4xsH6uj1Gv4rTk5RdIq8F/jIlYjF9oibzvb+psC+B v7+cxDVB4TBWpsZteIoljJHiHZQzXOO1n6BzQRPguHXPsMIwl3WwemlrhoU6Nextzv9X Iz8Wg4ybTaVm4rFN4bVAGQNuJYNZX0yHlYQmF6Iw2FTTabM7vhCWiDHivsjowDOjY8lK schzSTqdEOozQG4cXjcq4oPAZHfyjsvTU4oWSASTVqR9FmHSX2SnL9aNeht4vWyqG3qe Bq0Q== Return-Path: Received: from s46.loc (91-119-125-11.dsl.dynamic.surfer.at. [91.119.125.11]) by smtp.gmail.com with ESMTPSA id c10-v6sm4942232wrb.17.2018.09.05.07.57.45 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Wed, 05 Sep 2018 07:57:45 -0700 (PDT) Received: from cow by s46.loc with local (Exim 4.91) (envelope-from ) id 1fxZFX-00007H-Cl; Wed, 05 Sep 2018 14:57:43 +0000 From: Bernhard Reutner-Fischer To: fortran@gcc.gnu.org Cc: Bernhard Reutner-Fischer , gcc-patches@gcc.gnu.org Subject: [PATCH,FORTRAN 01/29] gdbinit: break on gfc_internal_error Date: Wed, 05 Sep 2018 14:57:00 -0000 Message-Id: <20180905145732.404-2-rep.dot.nop@gmail.com> In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-IsSubscribed: yes X-SW-Source: 2018-09/txt/msg00022.txt.bz2 From: Bernhard Reutner-Fischer Aids debugging the fortran FE. gcc/ChangeLog: 2017-11-12 Bernhard Reutner-Fischer * gdbinit.in: Break on gfc_internal_error. --- gcc/gdbinit.in | 1 + 1 file changed, 1 insertion(+) diff --git a/gcc/gdbinit.in b/gcc/gdbinit.in index 4db977f0bab..ac4d7c42e21 100644 --- a/gcc/gdbinit.in +++ b/gcc/gdbinit.in @@ -227,6 +227,7 @@ b fancy_abort # Put a breakpoint on internal_error to help with debugging ICEs. b internal_error +b gfc_internal_error set complaints 0 # Don't let abort actually run, as it will make -- 2.19.0.rc1