From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 105328 invoked by alias); 20 Jul 2016 21:00:58 -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 105301 invoked by uid 89); 20 Jul 2016 21:00:56 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 spammy=H*Ad:U*libffi-discuss, H*r:sk:libffi-, forthcoming, HTo:U*libffi-discuss X-HELO: mail-wm0-f46.google.com Received: from mail-wm0-f46.google.com (HELO mail-wm0-f46.google.com) (74.125.82.46) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Wed, 20 Jul 2016 21:00:49 +0000 Received: by mail-wm0-f46.google.com with SMTP id f65so190132339wmi.0 for ; Wed, 20 Jul 2016 14:00:48 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:from:date:message-id:subject:to :content-transfer-encoding; bh=RT3hFpgoBU9bpoPvoXdfHpdmKKh+4qIrhwpVFasqXCs=; b=QpF9AzA6WEFWjPrrVIZIhcJdpyRVFFuJczjTXKoVk+lXDhgykL3+gPaftWtZVcG+Pl lZtOON45ElCRoFU6JvrWgI8P6sWbYJxI2/rqdW3V8/3cxn5SQrcbhuFM1QVFM2uPN3EF eNzm1iJRqV6DMpcEDBKc03WB8wE9b4m+PU2AwPencJqq1K3JPDvbFxE2QDKmnzMJjt7x ficIgw5sDBsqEMKrLdK4aH/ncCXOK8hEFMI6/FOpcqf4s0g0EIH8PdmEWvrwV727QBpi 9inxIHv7cJI419vSTsNw0YwAqfuFS94hlgUrxqZ0eyyj7rocV3chDsRLWb+NSIKhGGSG tdbg== X-Gm-Message-State: ALyK8tIYWcc7PioM1Bbpp3vx0OM+yrd6pV8YRxqsENdTTp1cOw1Qa1L29EFGXP8QVtCyYWxCg9nojTejWQjIJQ== X-Received: by 10.28.134.203 with SMTP id i194mr13824444wmd.22.1469048446195; Wed, 20 Jul 2016 14:00:46 -0700 (PDT) MIME-Version: 1.0 Received: by 10.194.148.10 with HTTP; Wed, 20 Jul 2016 14:00:16 -0700 (PDT) From: Patrick Stewart Date: Wed, 20 Jul 2016 21:00:00 -0000 Message-ID: Subject: 3.2.1 broken on win64 To: libffi-discuss@sourceware.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-SW-Source: 2016/txt/msg00031.txt.bz2 The current release is broken on win64 if you return structs that aren=E2=80=99t a multiple of 16 bytes, as in commit 098dca6b31 a bunch of (size !=3D 1&& size !=3D 2 && size !=3D 4 && size !=3D 8) conditions were turned into (size & (1 | 2 | 4 | 8) =3D=3D 0), which is a little different. I see it=E2=80=99s all completely changed (and presumably fixed)= in git. Is a new release forthcoming?