From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.help Subject: Re: adress of lisp object is multiple of 8 Date: Tue, 08 May 2007 21:57:41 +0300 Message-ID: References: <28221415.79501178640250861.JavaMail.www@wwinf4203> NNTP-Posting-Host: lo.gmane.org X-Trace: sea.gmane.org 1178650682 21785 80.91.229.12 (8 May 2007 18:58:02 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 8 May 2007 18:58:02 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue May 08 20:58:01 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1HlUsq-00054O-Fd for geh-help-gnu-emacs@m.gmane.org; Tue, 08 May 2007 20:58:00 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HlUzx-00085N-13 for geh-help-gnu-emacs@m.gmane.org; Tue, 08 May 2007 15:05:21 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HlUzg-00081g-Qx for help-gnu-emacs@gnu.org; Tue, 08 May 2007 15:05:05 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HlUzf-00080K-4r for help-gnu-emacs@gnu.org; Tue, 08 May 2007 15:05:04 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HlUze-00080H-VR for help-gnu-emacs@gnu.org; Tue, 08 May 2007 15:05:02 -0400 Original-Received: from nitzan.inter.net.il ([213.8.233.22]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1HlUsX-0001KC-Dx for help-gnu-emacs@gnu.org; Tue, 08 May 2007 14:57:41 -0400 Original-Received: from HOME-C4E4A596F7 (IGLD-80-230-161-174.inter.net.il [80.230.161.174]) by nitzan.inter.net.il (MOS 3.7.3a-GA) with ESMTP id GRW34969 (AUTH halo1); Tue, 8 May 2007 21:57:41 +0300 (IDT) In-reply-to: <28221415.79501178640250861.JavaMail.www@wwinf4203> (message from A Soare on Tue, 8 May 2007 18:04:10 +0200 (CEST)) X-detected-kernel: FreeBSD 4.7-5.2 (or MacOS X 10.2-10.4) (2) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:43814 Archived-At: > From: A Soare > Date: Tue, 8 May 2007 18:04:10 +0200 (CEST) > > I do not understand how can I be sure that when the lisp allocs a new space of memory for a given object from enum Lisp_Type, it is allocated to an adress that is multiple of 8 ? Not really a good place to ask such questions, but anyway... See the definition of DECL_ALIGN on lisp.h, its usage, and the usage of USE_LSB_TAG that depends on it.