From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20750 invoked by alias); 24 Jan 2006 15:23:05 -0000 Received: (qmail 20741 invoked by uid 22791); 24 Jan 2006 15:23:04 -0000 X-Spam-Check-By: sourceware.org Received: from w099.z064220152.sjc-ca.dsl.cnc.net (HELO duck.specifix.com) (64.220.152.99) by sourceware.org (qpsmtpd/0.31) with ESMTP; Tue, 24 Jan 2006 15:23:02 +0000 Received: from diveadx (duck.specifix.com [64.220.152.99]) by duck.specifix.com (Postfix) with ESMTP id DA865FC60; Tue, 24 Jan 2006 07:22:57 -0800 (PST) From: Fred Fish Reply-To: fnf@specifix.com To: Jim Blandy Subject: [commit] Fix ptype problem printing typedefs defined differently in different compilation units Date: Tue, 24 Jan 2006 15:23:00 -0000 User-Agent: KMail/1.9.1 Cc: Daniel Jacobowitz , gdb-patches@sourceware.org, fnf@specifix.com References: <200601031517.50309.fnf@specifix.com> <200601231143.22560.fnf@specifix.com> <8f2776cb0601231117r6bdb8f95g6ee4c60aa6ebd22@mail.gmail.com> In-Reply-To: <8f2776cb0601231117r6bdb8f95g6ee4c60aa6ebd22@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200601241023.00993.fnf@specifix.com> Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2006-01/txt/msg00355.txt.bz2 On Monday 23 January 2006 14:17, Jim Blandy wrote: > So I don't think there's a problem with your patch. I've committed the patch. -Fred 2006-01-24 Fred Fish * parse.c (source.h): Include. (parse_exp_in_context): Use static source context if no other context found. Index: parse.c =================================================================== RCS file: /cvs/src/src/gdb/parse.c,v retrieving revision 1.51 diff -c -p -r1.51 parse.c *** parse.c 17 Dec 2005 22:34:01 -0000 1.51 --- parse.c 24 Jan 2006 14:49:59 -0000 *************** *** 52,57 **** --- 52,58 ---- #include "doublest.h" #include "gdb_assert.h" #include "block.h" + #include "source.h" /* Standard set of definitions for printing, dumping, prefixifying, * and evaluating expressions. */ *************** parse_exp_in_context (char **stringptr, *** 1075,1087 **** old_chain = make_cleanup (free_funcalls, 0 /*ignore*/); funcall_chain = 0; if (block) { expression_context_block = block; expression_context_pc = BLOCK_START (block); } - else - expression_context_block = get_selected_block (&expression_context_pc); expout_size = 10; expout_ptr = 0; --- 1076,1102 ---- old_chain = make_cleanup (free_funcalls, 0 /*ignore*/); funcall_chain = 0; + /* If no context specified, try using the current frame, if any. */ + + if (!block) + block = get_selected_block (&expression_context_pc); + + /* Fall back to using the current source static context, if any. */ + + if (!block) + { + struct symtab_and_line cursal = get_current_source_symtab_and_line (); + if (cursal.symtab) + block = BLOCKVECTOR_BLOCK (BLOCKVECTOR (cursal.symtab), STATIC_BLOCK); + } + + /* Save the context, if specified by caller, or found above. */ + if (block) { expression_context_block = block; expression_context_pc = BLOCK_START (block); } expout_size = 10; expout_ptr = 0;