From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9199 invoked by alias); 11 Feb 2014 09:26:27 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 9162 invoked by uid 89); 11 Feb 2014 09:26:26 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL,BAYES_00,RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: mga09.intel.com Received: from mga09.intel.com (HELO mga09.intel.com) (134.134.136.24) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 11 Feb 2014 09:26:26 +0000 Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga102.jf.intel.com with ESMTP; 11 Feb 2014 01:22:09 -0800 X-ExtLoop1: 1 Received: from irvmail001.ir.intel.com ([163.33.26.43]) by orsmga001.jf.intel.com with ESMTP; 11 Feb 2014 01:26:18 -0800 Received: from ullecvh004g04.iul.intel.com (ullecvh004g04.iul.intel.com [172.28.50.14]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id s1B9QHCG001018; Tue, 11 Feb 2014 09:26:17 GMT Received: from ullecvh004g04.iul.intel.com (ullecvh004g04.iul.intel.com [127.0.0.1]) by ullecvh004g04.iul.intel.com (8.13.8/8.13.8) with ESMTP id s1B9QHic021281; Tue, 11 Feb 2014 10:26:17 +0100 Received: (from sagovic@localhost) by ullecvh004g04.iul.intel.com (8.13.8/8.13.8/Submit) id s1B9QG7d021280; Tue, 11 Feb 2014 10:26:16 +0100 From: Sanimir Agovic To: sandra@codesourcery.com, yao@codesourcery.com Cc: gdb-patches@sourceware.org Subject: [PATCH 1/2] nios2-tdep: set default frame base Date: Tue, 11 Feb 2014 09:26:00 -0000 Message-Id: <1392110775-21242-2-git-send-email-sanimir.agovic@intel.com> In-Reply-To: <1392110775-21242-1-git-send-email-sanimir.agovic@intel.com> References: <1392110775-21242-1-git-send-email-sanimir.agovic@intel.com> X-IsSubscribed: yes X-SW-Source: 2014-02/txt/msg00344.txt.bz2 2014-02-11 Sanimir Agovic * nios2-tdep.c (nios2_gdbarch_init): Call frame_base_set_default. Signed-off-by: Sanimir Agovic --- gdb/nios2-tdep.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gdb/nios2-tdep.c b/gdb/nios2-tdep.c index 8f18739..b83c8a5 100644 --- a/gdb/nios2-tdep.c +++ b/gdb/nios2-tdep.c @@ -1595,6 +1595,7 @@ nios2_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches) dwarf2_append_unwinders (gdbarch); frame_unwind_append_unwinder (gdbarch, &nios2_stub_frame_unwind); frame_unwind_append_unwinder (gdbarch, &nios2_frame_unwind); + frame_base_set_default (gdbarch, &nios2_stub_frame_base); /* Single stepping. */ set_gdbarch_software_single_step (gdbarch, nios2_software_single_step); -- 1.8.4.2