From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 113581 invoked by alias); 21 Jan 2020 12:44:35 -0000 Mailing-List: contact libc-stable-help@sourceware.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Subscribe: List-Archive: Sender: libc-stable-owner@sourceware.org Received: (qmail 113564 invoked by uid 89); 21 Jan 2020 12:44:35 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Checked: by ClamAV 0.100.3 on sourceware.org X-Virus-Found: No X-Spam-SWARE-Status: No, score=-18.7 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.1 spammy= X-Spam-Status: No, score=-18.7 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on sourceware.org X-Spam-Level: X-HELO: us-smtp-1.mimecast.com Received: from us-smtp-delivery-1.mimecast.com (HELO us-smtp-1.mimecast.com) (205.139.110.120) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 21 Jan 2020 12:44:25 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1579610663; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=KSkiYt50T4SpvhPbxdg2ZWTrQdf62wF9dfmx+7xAJWE=; b=BCs3Q5974FFDZT9Cgq6B9FPuFT4ZX+0vb552xF+Xo0aRal8jHrkxb6k/RNrQ2A1A0upCCF V7qOrkhTfG3g3Q0kbbw8wWZXuTnD9WiRsvO2jCiOl2WRaiGh3xoVwd2CQQB94TWnk0t60d OWbV+iAn12v0+rzxoL5TlfIzJ2/ev5c= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-428-jdjiBXZeNme1oZWrlmhSXw-1; Tue, 21 Jan 2020 07:44:22 -0500 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 4897A800D4E for ; Tue, 21 Jan 2020 12:44:21 +0000 (UTC) Received: from oldenburg2.str.redhat.com (ovpn-116-133.ams2.redhat.com [10.36.116.133]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 0FC4410013A7 for ; Tue, 21 Jan 2020 12:44:21 +0000 (UTC) Received: by oldenburg2.str.redhat.com (Postfix, from userid 1000) id D72B7828E027; Tue, 21 Jan 2020 13:44:18 +0100 (CET) Date: Wed, 01 Jan 2020 00:00:00 -0000 To: libc-stable@sourceware.org Subject: [2.29 COMMITTED] riscv: Do not use __has_include__ User-Agent: Heirloom mailx 12.5 7/5/10 MIME-Version: 1.0 Message-Id: <20200121124418.D72B7828E027@oldenburg2.str.redhat.com> From: Florian Weimer X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 X-MC-Unique: jdjiBXZeNme1oZWrlmhSXw-1 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2020-01/txt/msg00014.txt.bz2 The user-visible preprocessor construct is called __has_include. (cherry picked from commit 28dd3939221ab26c6774097e9596e30d9753f758) 2019-06-06 Florian Weimer * sysdeps/unix/sysv/linux/riscv/flush-icache.c: Do not use internal GCC preprocessor identifier __has_include__. diff --git a/sysdeps/unix/sysv/linux/riscv/flush-icache.c b/sysdeps/unix/sysv/linux/riscv/flush-icache.c index cd5c400977..f2dfcc50d0 100644 --- a/sysdeps/unix/sysv/linux/riscv/flush-icache.c +++ b/sysdeps/unix/sysv/linux/riscv/flush-icache.c @@ -21,7 +21,7 @@ #include #include #include -#if __has_include__ () +#if __has_include () # include #else # include