From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4816 invoked by alias); 19 Jun 2007 15:22:46 -0000 Received: (qmail 4805 invoked by uid 22791); 19 Jun 2007 15:22:45 -0000 X-Spam-Status: No, hits=-2.3 required=5.0 tests=AWL,BAYES_00,DK_POLICY_SIGNSOME,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org (qpsmtpd/0.31) with ESMTP; Tue, 19 Jun 2007 15:22:43 +0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.13.1/8.13.1) with ESMTP id l5JFMejQ016703 for ; Tue, 19 Jun 2007 11:22:40 -0400 Received: from pobox.toronto.redhat.com (pobox.toronto.redhat.com [172.16.14.4]) by int-mx1.corp.redhat.com (8.13.1/8.13.1) with ESMTP id l5JFMeOB000684 for ; Tue, 19 Jun 2007 11:22:40 -0400 Received: from [172.16.14.55] (toner.toronto.redhat.com [172.16.14.55]) by pobox.toronto.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id l5JFMdeM027660; Tue, 19 Jun 2007 11:22:39 -0400 Message-ID: <4677F4BF.4050107@redhat.com> Date: Tue, 19 Jun 2007 15:46:00 -0000 From: Sami Wagiaalla User-Agent: Thunderbird 1.5.0.12 (X11/20070530) MIME-Version: 1.0 To: Sami Wagiaalla CC: frysk Subject: Re: Dwarf expertise needed References: <4677F3AA.2070904@redhat.com> In-Reply-To: <4677F3AA.2070904@redhat.com> Content-Type: multipart/mixed; boundary="------------040101020805040708070807" X-Virus-Checked: Checked by ClamAV on sourceware.org X-IsSubscribed: yes Mailing-List: contact frysk-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: frysk-owner@sourceware.org X-SW-Source: 2007-q2/txt/msg00333.txt.bz2 This is a multi-part message in MIME format. --------------040101020805040708070807 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-length: 21 Now the are attached --------------040101020805040708070807 Content-Type: text/x-csrc; name="funit-scopes.c" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="funit-scopes.c" Content-length: 163 #include void crash(int param1){ int* a = 0; a[0] = param1; } inline void second(int w){ crash(0); } int main(){ second(0); return 0; } --------------040101020805040708070807 Content-Type: text/x-csrc; name="funit-scopes-works.c" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="funit-scopes-works.c" Content-length: 192 #include void crash(int param1){ int* a = 0; a[0] = param1; } inline void second(int w){ crash(0); } void first(){ second(0); } int main(){ first(0); return 0; } --------------040101020805040708070807--