From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6494 invoked by alias); 11 Nov 2011 07:48:09 -0000 Received: (qmail 6481 invoked by uid 22791); 11 Nov 2011 07:48:08 -0000 X-SWARE-Spam-Status: No, hits=-2.1 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW X-Spam-Check-By: sourceware.org Received: from mail-bw0-f41.google.com (HELO mail-bw0-f41.google.com) (209.85.214.41) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 11 Nov 2011 07:47:55 +0000 Received: by bke17 with SMTP id 17so2261867bke.0 for ; Thu, 10 Nov 2011 23:47:54 -0800 (PST) MIME-Version: 1.0 Received: by 10.204.141.65 with SMTP id l1mr7242960bku.82.1320997674294; Thu, 10 Nov 2011 23:47:54 -0800 (PST) Received: by 10.204.59.212 with HTTP; Thu, 10 Nov 2011 23:47:54 -0800 (PST) Date: Fri, 11 Nov 2011 07:48:00 -0000 Message-ID: Subject: Issue with GDB 7.0 on MIPS(gcc 4.4.1) From: naveen yadav To: gcc-help@gcc.gnu.org, gcc-help@gnu.org, gdb@sourceware.org Content-Type: text/plain; charset=ISO-8859-1 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: 2011-11/txt/msg00079.txt.bz2 Hi All, I am running one application and it generate core dump. When I run bt . (gdb) bt #0 wepp (gn=0x5d5f58, ef=0x5c43000, Bytes=429496729, gcOs=0x5c3408f) #1 CompactCollect (gn=0x5d5f58, ef=0x5c43000, Bytes=429496729, gcOs=0x5c3408f) ... In above case we got crash in wepp(). CompactCollect () is main function and wepp() is another function which got called from CompactCollect (). When I check the assembly wepp() become inline. So i got bit surprise when i check that function parameter;s for both wepp() and CompactCollect () are same. So is it correct behaviour ? that calling and calle have same parameter Thanks.