From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29753 invoked by alias); 23 Jun 2008 03:52:10 -0000 Received: (qmail 29745 invoked by uid 22791); 23 Jun 2008 03:52:09 -0000 X-Spam-Check-By: sourceware.org Received: from mail.codesourcery.com (HELO mail.codesourcery.com) (65.74.133.4) by sourceware.org (qpsmtpd/0.31) with ESMTP; Mon, 23 Jun 2008 03:51:52 +0000 Received: (qmail 28665 invoked from network); 23 Jun 2008 03:51:50 -0000 Received: from unknown (HELO wind.local) (vladimir@127.0.0.2) by mail.codesourcery.com with ESMTPA; 23 Jun 2008 03:51:50 -0000 From: Vladimir Prus To: Andreas Schwab Subject: Re: breakpoint.c:5280: internal-error: expand_line_sal_maybe: Assertion `found' failed. Date: Mon, 23 Jun 2008 03:52:00 -0000 User-Agent: KMail/1.9.9 Cc: gdb@sourceware.org References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200806230751.44399.vladimir@codesourcery.com> Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org X-SW-Source: 2008-06/txt/msg00213.txt.bz2 On Monday 23 June 2008 03:45:49 Andreas Schwab wrote: > I'm getting this assertion failure when setting a breakpoint on a C++ > member function. What does that mean? This failure exists since the > function was introduced. When I remove the assertion I don't see > anything wrong happening. This means that GDB found the symbol you requested, at some address, X, and associated with file:file F:L. Then, we find all addresses {Y} corresponding to F:L. The assert means that X does not belong to the set of addresses {Y}. This should not happen generally -- do you have a small reproducible example? - Volodya