From patchwork Thu Dec 27 14:59:08 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Segher Boessenkool X-Patchwork-Id: 1018916 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=gcc.gnu.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=gcc-patches-return-493129-incoming=patchwork.ozlabs.org@gcc.gnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=kernel.crashing.org Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b="j5UA+epi"; 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 43QY0Y75Bpz9s7h for ; Fri, 28 Dec 2018 01:59:57 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :to:cc:subject:date:message-id:in-reply-to:references :in-reply-to:references; q=dns; s=default; b=yh6iFhfZCvi/5Q1t7bG 2Z4nwXGJPvPtEmktFKr8y1PpGgOO77dJpvpcWhBZSYjRl4QmOZp52nn2txf7IajT lwqCtu2BCTkeSERVWxWKIugf3Xt9lvnqr0mVqkjiHzX12hiyNkN+2bnkhqogMIgY ar4knatqsfb2rPXXE+dPw+8I= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :to:cc:subject:date:message-id:in-reply-to:references :in-reply-to:references; s=default; bh=MV6gKWlxsFt4dp0neO8QOYzhC iw=; b=j5UA+epiGe6nL9TblHeEss05kLnGxU6MgQdp7Gn1RH1sTvRqgP6Dyl1oy o6F+BUraJ5QwWC3+XFWx8bSJ8+k/RloHXgLleDU2LdkMQZpOOMKwM7DxyWq2WjYt 8BkB9+eQALgvgw+6N2279iR4j7nMZEJt1QKrGFRsBfwF7Mx0ZQ= Received: (qmail 126137 invoked by alias); 27 Dec 2018 14:59:36 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 126059 invoked by uid 89); 27 Dec 2018 14:59:35 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-25.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KAM_LAZY_DOMAIN_SECURITY autolearn=ham version=3.3.2 spammy=setting, accidentally X-HELO: gcc1-power7.osuosl.org Received: from gcc1-power7.osuosl.org (HELO gcc1-power7.osuosl.org) (140.211.15.137) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 27 Dec 2018 14:59:34 +0000 Received: by gcc1-power7.osuosl.org (Postfix, from userid 10019) id C782C12403FF; Thu, 27 Dec 2018 14:59:32 +0000 (UTC) From: Segher Boessenkool To: gcc-patches@gcc.gnu.org Cc: Segher Boessenkool Subject: [PATCH 3/8] c: Delete a stray line in asm inline Date: Thu, 27 Dec 2018 14:59:08 +0000 Message-Id: <35014fbfa36ce89dd26fdf43387416a907be4782.1545922222.git.segher@kernel.crashing.org> In-Reply-To: References: In-Reply-To: References: X-IsSubscribed: yes I noticed I accidentally copied a line too many from the "volatile" handling to the "inline" handling. This fixes it. Tested on powerpc64-linux {-m32,-m64}; committing as trivial and obvious. Segher 2018-12-08 Segher Boessenkool gcc/c/ * c-parser (c_parser_asm_statement) [RID_INLINE]: Delete stray line setting "quals". --- gcc/c/c-parser.c | 1 - 1 file changed, 1 deletion(-) diff --git a/gcc/c/c-parser.c b/gcc/c/c-parser.c index 51cc2be..e45f70b 100644 --- a/gcc/c/c-parser.c +++ b/gcc/c/c-parser.c @@ -6321,7 +6321,6 @@ c_parser_asm_statement (c_parser *parser) if (!is_inline) { is_inline = true; - quals = c_parser_peek_token (parser)->value; c_parser_consume_token (parser); } else