From patchwork Wed Jun 5 13:42:50 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Florian Weimer X-Patchwork-Id: 1110494 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=sourceware.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=libc-alpha-return-102459-incoming=patchwork.ozlabs.org@sourceware.org; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b="dzM1LojV"; dkim-atps=neutral Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 45Jqjw14Xgz9sNt for ; Wed, 5 Jun 2019 23:42:59 +1000 (AEST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:subject:date:message-id:mime-version :content-type; q=dns; s=default; b=E+0QQAniW5u1a6fXAiw2BbcNv1qxk PhJo1xm99gnQ3/cQyog+UY3MA9pB/NN24GFPnEw66vmIIDMGpou2ufhg1wnDeT2P PaOhWgGylwv9/XR/5Au9I1HDgY7qYV7cSMgkUeEUU/ziOSidDn70RMRjKPFNiIzS OPZ4Al4ru3qqIQ= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:subject:date:message-id:mime-version :content-type; s=default; bh=pJSjVZJBz7X1GbffmzAWQlBz6tc=; b=dzM 1LojV4n09LqbgkU7IoIn+FlzoohqrZxTxWeud9rsuz+1iYRC/x+mSWb3CKQojjTz KBt4cTDx+7xz6i69lEBrYiD6zDyBTqIQ4U02O4FGS6OJdXsRtzj0/5h8SOP9+7kY tKcIxu9X6zUAV+w/EyU3G0QTgR/dglq/kN/tbrAo= Received: (qmail 96945 invoked by alias); 5 Jun 2019 13:42:54 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 96937 invoked by uid 89); 5 Jun 2019 13:42:54 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-18.9 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, SPF_HELO_PASS autolearn=ham version=3.3.1 spammy=HX-Languages-Length:735 X-HELO: mx1.redhat.com From: Florian Weimer To: libc-alpha@sourceware.org Subject: [PATCH] riscv: Do not use __has_include__ Date: Wed, 05 Jun 2019 15:42:50 +0200 Message-ID: <87woi0up0l.fsf@oldenburg2.str.redhat.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux) MIME-Version: 1.0 The user-visible preprocessor construct is called __has_include. 2019-06-05 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