From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18470 invoked by alias); 18 Nov 2014 10:20:25 -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 18457 invoked by uid 89); 18 Nov 2014 10:20:24 -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: e06smtp10.uk.ibm.com Received: from e06smtp10.uk.ibm.com (HELO e06smtp10.uk.ibm.com) (195.75.94.106) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Tue, 18 Nov 2014 10:20:23 +0000 Received: from /spool/local by e06smtp10.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Tue, 18 Nov 2014 10:20:20 -0000 Received: from d06dlp01.portsmouth.uk.ibm.com (9.149.20.13) by e06smtp10.uk.ibm.com (192.168.101.140) with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted; Tue, 18 Nov 2014 10:20:19 -0000 Received: from b06cxnps4075.portsmouth.uk.ibm.com (d06relay12.portsmouth.uk.ibm.com [9.149.109.197]) by d06dlp01.portsmouth.uk.ibm.com (Postfix) with ESMTP id 1985217D8045 for ; Tue, 18 Nov 2014 10:20:31 +0000 (GMT) Received: from d06av10.portsmouth.uk.ibm.com (d06av10.portsmouth.uk.ibm.com [9.149.37.251]) by b06cxnps4075.portsmouth.uk.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id sAIAKIVv63832076 for ; Tue, 18 Nov 2014 10:20:18 GMT Received: from d06av10.portsmouth.uk.ibm.com (localhost [127.0.0.1]) by d06av10.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id sAIAKHUR012791 for ; Tue, 18 Nov 2014 03:20:17 -0700 Received: from bl3ahm9f.de.ibm.com (dyn-9-152-212-122.boeblingen.de.ibm.com [9.152.212.122]) by d06av10.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVin) with ESMTP id sAIAKHVs012763 (version=TLSv1/SSLv3 cipher=AES256-SHA bits=256 verify=NO) for ; Tue, 18 Nov 2014 03:20:17 -0700 Received: from dvogt by bl3ahm9f.de.ibm.com with local (Exim 4.76) (envelope-from ) id 1XqftR-0007Kh-2H; Tue, 18 Nov 2014 11:20:17 +0100 Date: Tue, 18 Nov 2014 10:20:00 -0000 From: Dominik Vogt To: libffi-discuss@sourceware.org Subject: [PATCH 6/7] Merge of gcc patches Message-ID: <20141118102016.GG26714@linux.vnet.ibm.com> Reply-To: libffi-discuss@sourceware.org Mail-Followup-To: libffi-discuss@sourceware.org References: <20141118101743.GA26714@linux.vnet.ibm.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="kjpMrWxdCilgNbo1" Content-Disposition: inline In-Reply-To: <20141118101743.GA26714@linux.vnet.ibm.com> User-Agent: Mutt/1.5.21 (2010-09-15) X-TM-AS-MML: disable X-Content-Scanned: Fidelis XPS MAILER x-cbid: 14111810-0041-0000-0000-0000022921FD X-IsSubscribed: yes X-SW-Source: 2014/txt/msg00230.txt.bz2 --kjpMrWxdCilgNbo1 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 64 Patch 6. Ciao Dominik ^_^ ^_^ -- Dominik Vogt IBM Germany --kjpMrWxdCilgNbo1 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=0006-ChangeLog Content-length: 170 ChangeLog 2014-07-21 Uros Bizjak * src/alpha/ffi.c: Do not include stdlib.h. (ffi_closure_osf_inner) : Use FFI_ASSERT instead of abort. --kjpMrWxdCilgNbo1 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: 960 >From f23173472d9d81fb18fdbc6ad8687ea7f26ce3d0 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. (ffi_closure_osf_inner) : Use FFI_ASSERT instead of abort. --- src/alpha/ffi.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/alpha/ffi.c b/src/alpha/ffi.c index 192f691..cf0a730 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. */ @@ -273,7 +272,7 @@ ffi_closure_osf_inner(ffi_closure *closure, void *rvalue, unsigned long *argp) break; default: - abort (); + FFI_ASSERT (0); } argn += ALIGN(size, FFI_SIZEOF_ARG) / FFI_SIZEOF_ARG; -- 1.8.4.2 --kjpMrWxdCilgNbo1--