From mint-bounce@lists.fishpool.fi Wed Jan 20 16:00:36 2010 Message-ID: <4B576DC8.9090000@freesbee.fr> Date: Wed, 20 Jan 2010 21:55:36 +0100 From: =?ISO-8859-15?Q?Vincent_Rivi=E8re?= User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.9.1.5) Gecko/20091204 Thunderbird/3.0 MIME-Version: 1.0 To: mint@lists.fishpool.fi Subject: Re: [MiNT] gcc-code-generation References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-15; format=flowed X-Antivirus: avast! (VPS 100120-1, 20/01/2010), Outbound message X-Antivirus-Status: Clean X-ecartis-version: Ecartis v1.0.0 Sender: mint-bounce@lists.fishpool.fi Errors-to: mint-bounce@lists.fishpool.fi X-original-sender: vincent.riviere@freesbee.fr Precedence: bulk List-help: List-unsubscribe: List-Id: X-List-ID: List-subscribe: List-owner: List-post: Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by mail.sparemint.org id o0KL0aWC025925 Helmut Karlowski wrote: > if( (unsigned long)&e & 1L ) By the way I undersand you want to check the oddness of the stack in some places. You can use this function to get the current stack value from C: /* Read the current stack pointer value */ static __inline__ void* get_sp(void) { register void* ret __asm__("sp"); return ret; } -- Vincent Rivière