From owner-cvs-src-old@FreeBSD.ORG Fri Apr 9 15:21:26 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 86815106564A for ; Fri, 9 Apr 2010 15:21:26 +0000 (UTC) (envelope-from rdivacky@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 73FFE8FC0A for ; Fri, 9 Apr 2010 15:21:26 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o39FLQJ2060819 for ; Fri, 9 Apr 2010 15:21:26 GMT (envelope-from rdivacky@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o39FLQBE060818 for cvs-src-old@freebsd.org; Fri, 9 Apr 2010 15:21:26 GMT (envelope-from rdivacky@repoman.freebsd.org) Message-Id: <201004091521.o39FLQBE060818@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to rdivacky@repoman.freebsd.org using -f From: Roman Divacky Date: Fri, 9 Apr 2010 15:21:11 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/xlint/lint1 decl.c lint1.h mem1.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Apr 2010 15:21:26 -0000 rdivacky 2010-04-09 15:21:11 UTC FreeBSD src repository Modified files: usr.bin/xlint/lint1 decl.c lint1.h mem1.c Log: SVN rev 206424 on 2010-04-09 15:21:11Z by rdivacky Rename the ALIGN macro to LINT_ALIGN so it does not clash with machine/param.h Bump the alignment to 16bytes because lint1 memory allocator is used for objects that require 16bytes alignment on amd64 (ie. val_t). This makes lint1 work when compiled with compiler(s) that use SSE for memcpy on amd64. (e.g. clang). Approved by: ed (mentor) Revision Changes Path 1.13 +4 -4 src/usr.bin/xlint/lint1/decl.c 1.4 +2 -2 src/usr.bin/xlint/lint1/lint1.h 1.11 +1 -1 src/usr.bin/xlint/lint1/mem1.c