From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10669 invoked by alias); 13 Dec 2002 20:38:17 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 10657 invoked from network); 13 Dec 2002 20:38:14 -0000 Received: from unknown (HELO localhost.redhat.com) (66.30.197.194) by sources.redhat.com with SMTP; 13 Dec 2002 20:38:14 -0000 Received: from redhat.com (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id 89FAF3D07; Fri, 13 Dec 2002 15:38:07 -0500 (EST) Message-ID: <3DFA452F.4050205@redhat.com> Date: Fri, 13 Dec 2002 12:38:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:1.0.1) Gecko/20021211 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Alexandre Oliva Cc: gdb-patches@sources.redhat.com Subject: Re: [patch/rfc] frame_id_unwind() References: <3DF7A9EE.3080908@redhat.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2002-12/txt/msg00428.txt.bz2 > On Dec 11, 2002, Andrew Cagney wrote: > > >> +struct frame_id > > ^^ > >> +dummy_frame_id_unwind (struct frame_info *frame, >> + void **cache) > > >> +extern struct frame_id dummy_frame_id_unwind (struct frame_info *frame, >> + void **unwind_cache); >> + > > ^^ > > >> +struct frame_id >> +frame_id_unwind (struct frame_info *frame) >> +{ >> + if (!frame->id_unwind_cache_p) >> + { >> + frame->id_unwind_cache = >> + frame->id_unwind (frame, &frame->unwind_cache); > > [ type mismatch above ] Er, how did this build? Thanks! Andrew