From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10201 invoked by alias); 18 Nov 2014 11:06:24 -0000 Mailing-List: contact libffi-discuss-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libffi-discuss-owner@sourceware.org Received: (qmail 10190 invoked by uid 89); 18 Nov 2014 11:06:23 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.3 required=5.0 tests=AWL,BAYES_00,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: e06smtp15.uk.ibm.com Received: from e06smtp15.uk.ibm.com (HELO e06smtp15.uk.ibm.com) (195.75.94.111) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Tue, 18 Nov 2014 11:06:22 +0000 Received: from /spool/local by e06smtp15.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Tue, 18 Nov 2014 11:06:19 -0000 Received: from d06dlp01.portsmouth.uk.ibm.com (9.149.20.13) by e06smtp15.uk.ibm.com (192.168.101.145) with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted; Tue, 18 Nov 2014 11:06:18 -0000 Received: from b06cxnps4076.portsmouth.uk.ibm.com (d06relay13.portsmouth.uk.ibm.com [9.149.109.198]) by d06dlp01.portsmouth.uk.ibm.com (Postfix) with ESMTP id 677CB17D8043 for ; Tue, 18 Nov 2014 11:06:30 +0000 (GMT) Received: from d06av09.portsmouth.uk.ibm.com (d06av09.portsmouth.uk.ibm.com [9.149.37.250]) by b06cxnps4076.portsmouth.uk.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id sAIB6Icg57212998 for ; Tue, 18 Nov 2014 11:06:18 GMT Received: from d06av09.portsmouth.uk.ibm.com (localhost [127.0.0.1]) by d06av09.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id sAIB6IHj010181 for ; Tue, 18 Nov 2014 04:06:18 -0700 Received: from bl3ahm9f.de.ibm.com (dyn-9-152-212-122.boeblingen.de.ibm.com [9.152.212.122]) by d06av09.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVin) with ESMTP id sAIB6HiB010154 (version=TLSv1/SSLv3 cipher=AES256-SHA bits=256 verify=NO) for ; Tue, 18 Nov 2014 04:06:18 -0700 Received: from dvogt by bl3ahm9f.de.ibm.com with local (Exim 4.76) (envelope-from ) id 1Xqgbx-0000Mz-Eh; Tue, 18 Nov 2014 12:06:17 +0100 Date: Tue, 18 Nov 2014 11:06:00 -0000 From: Dominik Vogt To: libffi-discuss@sourceware.org Subject: Re: [PATCH 6/7] Merge of gcc patches Message-ID: <20141118110617.GA609@linux.vnet.ibm.com> Reply-To: libffi-discuss@sourceware.org Mail-Followup-To: libffi-discuss@sourceware.org References: <20141118101743.GA26714@linux.vnet.ibm.com> <20141118102016.GG26714@linux.vnet.ibm.com> <546B2106.3050001@redhat.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="y0ulUmNC+osPPQO6" Content-Disposition: inline In-Reply-To: <546B2106.3050001@redhat.com> User-Agent: Mutt/1.5.21 (2010-09-15) X-TM-AS-MML: disable X-Content-Scanned: Fidelis XPS MAILER x-cbid: 14111811-0021-0000-0000-000001D21075 X-IsSubscribed: yes X-SW-Source: 2014/txt/msg00241.txt.bz2 --y0ulUmNC+osPPQO6 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 402 On Tue, Nov 18, 2014 at 11:35:50AM +0100, Richard Henderson wrote: > This has in effect already been applied. Note that FFI_TYPE_VOID now appears > in the switch statement. The abort now only applies to true out-of-bounds, aka > corrupt, ffi_type data. Ah, I see. The first half of the patch still looks useful though. Updated patch attached. Ciao Dominik ^_^ ^_^ -- Dominik Vogt IBM Germany --y0ulUmNC+osPPQO6 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=0006-ChangeLog Content-length: 101 ChangeLog 2014-07-21 Uros Bizjak * src/alpha/ffi.c: Do not include stdlib.h. --y0ulUmNC+osPPQO6 Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0006-src-alpha-ffi.c-Do-not-include-stdlib.h.patch" Content-length: 646 >From 4478b515536ee437f78221c3062ee00727962764 Mon Sep 17 00:00:00 2001 From: uros Date: Fri, 25 Jul 2014 09:01:45 +0000 Subject: [PATCH 6/7] src/alpha/ffi.c: Do not include stdlib.h. --- src/alpha/ffi.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/alpha/ffi.c b/src/alpha/ffi.c index 192f691..7d72b0c 100644 --- a/src/alpha/ffi.c +++ b/src/alpha/ffi.c @@ -27,7 +27,6 @@ #include #include -#include /* Force FFI_TYPE_LONGDOUBLE to be different than FFI_TYPE_DOUBLE; all further uses in this file will refer to the 128-bit type. */ -- 1.8.4.2 --y0ulUmNC+osPPQO6--