From patchwork Sun Nov 19 11:06:33 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom de Vries X-Patchwork-Id: 839307 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-467318-incoming=patchwork.ozlabs.org@gcc.gnu.org; receiver=) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b="iyUX8/ho"; 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 3yfpvX2c9Xz9ryT for ; Sun, 19 Nov 2017 22:06:48 +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:to:cc :from:subject:message-id:date:mime-version:content-type; q=dns; s=default; b=jswAu457uI6eCmEVn827LJMeUKtfqs0tIDYYAZU/lAeK7DKNCl 6Unoc3+gbr33yfvr82MyWFaeE1/9kb2Zuyqlj4ICaPE8QhPZkBvDAYgLvuftS1Th +92RHpbRfqlB/6YOqh62ld60bgo5f1LPdUwW2fwfpxTLVHxevPsj27UsE= 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:to:cc :from:subject:message-id:date:mime-version:content-type; s= default; bh=tt4Liksjf7Mk6VMriX6+LOutT9M=; b=iyUX8/hooooJAhGTFwG0 oKYVHlzyUoHv+gx7qJHTCNf1DH20krP46rnRCs/PebErBfEcZyda1Hjg8suKXgBR fmYM6nL2Jh28j0vGjdJ3q7QjdVWqPIJOWfdcU8jjBUM2ev0/lJGqSnJy8xtusS/6 n/4KcPvIIbGk1e1JSttXYUg= Received: (qmail 116597 invoked by alias); 19 Nov 2017 11:06:41 -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 116584 invoked by uid 89); 19 Nov 2017 11:06:40 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-24.5 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KB_WAM_FROM_NAME_SINGLEWORD, RCVD_IN_DNSWL_NONE, SPF_PASS, URIBL_RED autolearn=ham version=3.3.2 spammy= X-HELO: relay1.mentorg.com Received: from relay1.mentorg.com (HELO relay1.mentorg.com) (192.94.38.131) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 19 Nov 2017 11:06:39 +0000 Received: from nat-ies.mentorg.com ([192.94.31.2] helo=SVR-IES-MBX-04.mgc.mentorg.com) by relay1.mentorg.com with esmtps (TLSv1.2:ECDHE-RSA-AES256-SHA384:256) id 1eGNQs-0006Z0-0a from Tom_deVries@mentor.com ; Sun, 19 Nov 2017 03:06:38 -0800 Received: from [172.30.72.34] (137.202.0.87) by SVR-IES-MBX-04.mgc.mentorg.com (139.181.222.4) with Microsoft SMTP Server (TLS) id 15.0.1320.4; Sun, 19 Nov 2017 11:06:34 +0000 To: GCC Patches CC: Eric Botcazou From: Tom de Vries Subject: [visium, committed] Remove semicolon after ASM_OUTPUT_CASE_END Message-ID: Date: Sun, 19 Nov 2017 12:06:33 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.4.0 MIME-Version: 1.0 X-ClientProxiedBy: svr-ies-mbx-01.mgc.mentorg.com (139.181.222.1) To SVR-IES-MBX-04.mgc.mentorg.com (139.181.222.4) Hi, this patch removes a semicolon after ASM_OUTPUT_CASE_END. This allows the macro to be used in if-then-elses without curly braces. Build visium-unknown-elf. Committed as obvious. Thanks, - Tom [visium] Remove semicolon after ASM_OUTPUT_CASE_END 2017-11-14 Tom de Vries * config/visium/visium.h (ASM_OUTPUT_CASE_END): Remove semicolon after macro body. --- gcc/config/visium/visium.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/config/visium/visium.h b/gcc/config/visium/visium.h index 8573595..ecab9ec 100644 --- a/gcc/config/visium/visium.h +++ b/gcc/config/visium/visium.h @@ -1456,7 +1456,7 @@ do \ Here we output a word of zero so that jump-tables can be seperated in reverse assembly. */ #define ASM_OUTPUT_CASE_END(STREAM, NUM, TABLE) \ - asm_fprintf (STREAM, "\t.long 0\n"); + asm_fprintf (STREAM, "\t.long 0\n") /* Assembler Commands for Alignment