Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:93739 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 68049 invoked from network); 3 Jun 2016 10:06:47 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 3 Jun 2016 10:06:47 -0000 Authentication-Results: pb1.pair.com smtp.mail=mamfelt@gmail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=mamfelt@gmail.com; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 74.125.82.48 as permitted sender) X-PHP-List-Original-Sender: mamfelt@gmail.com X-Host-Fingerprint: 74.125.82.48 mail-wm0-f48.google.com Received: from [74.125.82.48] ([74.125.82.48:36763] helo=mail-wm0-f48.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id D5/E0-56709-6B651575 for ; Fri, 03 Jun 2016 06:06:47 -0400 Received: by mail-wm0-f48.google.com with SMTP id n184so118264818wmn.1 for ; Fri, 03 Jun 2016 03:06:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=subject:to:references:from:message-id:date:user-agent:mime-version :in-reply-to:content-transfer-encoding; bh=q0YENPTi7B03TRsv+1XG8c9owhG3+DYfP82GH6h90fU=; b=IJ4QgcgEODDo43Yo02eGJ8tTxemFTu7DIELK9qorqA2rrIYjeGtvXRs81VRC29Yc4G b6R7F5PmD1frqRvmuUgaZZOg62nGJlbWB1DxLPjmomwsz9J+VY7zw2Ovmdcz5Rhbs8lu e0pzfllfQqQDoOPI9t9phSgM//nDhYw0MBFYQHhNjaIkOOxpaiYGU1JhK6izv7sMpJt+ KX4EEYstAt9dusu5SUnwZ7UYlDg22r6r3vnIykd8K5aVau8Y/st5XVm2AESlrQ0uLdZ2 DjdXl2LR9Fi/ifqoxMk8h0dJYQ/FDJEDIl0OgT7oMlMWt1b0jrY6FaDZSghntSwP86Bc B41Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:subject:to:references:from:message-id:date :user-agent:mime-version:in-reply-to:content-transfer-encoding; bh=q0YENPTi7B03TRsv+1XG8c9owhG3+DYfP82GH6h90fU=; b=IY9xZZR7bxVaWkNCgDavbkkfU+e/aWuKWvA3NIdIxBnxR5CCI14CQRI7wxmJ0meYBK eO8lLLZ11ansIJsFlttfmmsFN52AhVkHXJaExJZb4k4vYirjr/tI0SaxLZ4ZQkbPr/Yt W/uYPejjWAVsoqWyj0jU3uy7TRODS+sGY5s2bv/dCzJ7kK8/3FMiAgjnpCDg94stimCj hwo+5fxFcTzyms/LjR9eUVKSLzeWKujnaUCLuVHLBUlKHoHPowkDVAsqS128S9MdnkM3 jCYiI39wCkBPXGRtq7rK5dJKuhKPLdmBlISk/b4R07VGmJOON4D7iLUhI2BLpFRpAii9 08zg== X-Gm-Message-State: ALyK8tKrXd1zjymVtsH0wfcE0jTOI/I80h+ubr0tJr0dURdPsWnkpoAvmoEtnAY9H93dyA== X-Received: by 10.28.133.210 with SMTP id h201mr2646681wmd.86.1464948404130; Fri, 03 Jun 2016 03:06:44 -0700 (PDT) Received: from ?IPv6:2001:981:56fd:1:4514:5d15:b22c:e682? ([2001:981:56fd:1:4514:5d15:b22c:e682]) by smtp.googlemail.com with ESMTPSA id q189sm5597709wmd.19.2016.06.03.03.06.43 for (version=TLSv1/SSLv3 cipher=OTHER); Fri, 03 Jun 2016 03:06:43 -0700 (PDT) To: internals@lists.php.net References: Message-ID: Date: Fri, 3 Jun 2016 12:06:43 +0200 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Subject: [PHP-DEV] - how to get attention for a possible bug, report now years old From: mamfelt@gmail.com (Michael Felt) Hi, Years ago I reported what I thought should be fairly simple to resolve. The issue number (below) is that now the zend code goes through the following logic # test 1 #define __restrict__ restrict later test #2 # define __restrict__ And always: #define restrict __restrict__ In this case: test #1 is done by the OS include files, and test#2 and the final assignment are done in zend*.h (was zend.h, now zend_portability.h) As I do not really *know* the importance of the *restrict* and/or *__restrict__* keywords, maybe this is less important than spilled milk. My idea for a patch was to not do test 2 if __restrict__ was already defined. However, what is the value, or sense of the result - which would be: #define __restrict__ restrict #define restrict __restrict__ It feels like a bug - it certainly confuses me. M p.s. https://bugs.php.net/bug.php?id=62346