From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 30218 invoked by alias); 28 Oct 2014 18:53:52 -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 30191 invoked by uid 89); 28 Oct 2014 18:53:51 -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,FREEMAIL_ENVFROM_END_DIGIT,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-qg0-f53.google.com Received: from mail-qg0-f53.google.com (HELO mail-qg0-f53.google.com) (209.85.192.53) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Tue, 28 Oct 2014 18:53:50 +0000 Received: by mail-qg0-f53.google.com with SMTP id z107so1019378qgd.40 for ; Tue, 28 Oct 2014 11:53:48 -0700 (PDT) X-Received: by 10.140.104.114 with SMTP id z105mr7374311qge.75.1414522428191; Tue, 28 Oct 2014 11:53:48 -0700 (PDT) Received: from anchor.com (50-194-63-110-static.hfc.comcastbusiness.net. [50.194.63.110]) by mx.google.com with ESMTPSA id 69sm1717430qgy.19.2014.10.28.11.53.46 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 28 Oct 2014 11:53:47 -0700 (PDT) From: Richard Henderson To: libffi-discuss@sourceware.org Cc: Richard Henderson Subject: [PATCH 01/16] aarch64: Fix non-apple compilation Date: Tue, 28 Oct 2014 18:53:00 -0000 Message-Id: <1414522393-19169-2-git-send-email-rth@twiddle.net> In-Reply-To: <1414522393-19169-1-git-send-email-rth@twiddle.net> References: <1414522393-19169-1-git-send-email-rth@twiddle.net> X-SW-Source: 2014/txt/msg00134.txt.bz2 From: Richard Henderson --- src/aarch64/ffi.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/aarch64/ffi.c b/src/aarch64/ffi.c index 5369ea4..cdb7816 100644 --- a/src/aarch64/ffi.c +++ b/src/aarch64/ffi.c @@ -782,7 +782,9 @@ ffi_prep_cif_machdep (ffi_cif *cif) } } +#if defined (__APPLE__) cif->aarch64_nfixedargs = 0; +#endif return FFI_OK; } -- 1.9.3