From patchwork Thu Jun 9 14:48:44 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Maciej W. Rozycki" X-Patchwork-Id: 632990 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org 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 3rQSqk4sy9z9sDC for ; Fri, 10 Jun 2016 00:49:05 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b=smsZO5Vd; dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:subject:message-id:mime-version:content-type; q=dns; s= default; b=g8Gu2WKgm9bJ0ZeO3Znu7myizW0k2fFkw5PhV1paoRXeGtUr/Oehb bqNzRR3E7NH5CQiqpG4Gniq4KM6Iahtdf2z28BsHVt6YwWUPCnYqPm/WqZ0KeQAP Fsn6foXOTX4ZZhQH/mcKsHF5iBdJiVBlkA5WtBXTYc0TBJ5DI+D6IU= 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:date :from:to:subject:message-id:mime-version:content-type; s= default; bh=sS+RG/YWiM9NXgig9KbartkrBD4=; b=smsZO5VdJ28SUtfsQHds fwp1KiRO76fIPHr8CqOAMEjuxL9iKAKeuwQ8Yh5fMWp5GPwvFq19Wv0lBlx+17Ki yYMKrtsKQJU8jzKTYvRS6ILvwhI4vyx71eAWQqA4IEj6Zk5ESf4mctJWFvO/LbC+ mp6vdoa8I1uoWuKHvhZeQbs= Received: (qmail 4378 invoked by alias); 9 Jun 2016 14:48:57 -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 4369 invoked by uid 89); 9 Jun 2016 14:48:57 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_NONE, RP_MATCHES_RCVD, SPF_PASS autolearn=ham version=3.3.2 spammy=columns X-HELO: mailapp01.imgtec.com Received: from mailapp01.imgtec.com (HELO mailapp01.imgtec.com) (195.59.15.196) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 09 Jun 2016 14:48:56 +0000 Received: from HHMAIL01.hh.imgtec.org (unknown [10.100.10.19]) by Forcepoint Email with ESMTPS id 7A574E4D86FDC for ; Thu, 9 Jun 2016 15:48:50 +0100 (IST) Received: from [10.20.78.135] (10.20.78.135) by HHMAIL01.hh.imgtec.org (10.100.10.21) with Microsoft SMTP Server id 14.3.294.0; Thu, 9 Jun 2016 15:48:52 +0100 Date: Thu, 9 Jun 2016 15:48:44 +0100 From: "Maciej W. Rozycki" To: Subject: [committed] MIPS: Stay within 79 columns in `mips_output_jump' Message-ID: User-Agent: Alpine 2.00 (DEB 1167 2008-08-23) MIME-Version: 1.0 Hi, I have applied this change, as obvious. gcc/ * config/mips/mips.c (mips_output_jump): Fix formatting. Maciej gcc-mips-output-jump-format.diff Index: gcc/config/mips/mips.c =================================================================== --- gcc/config/mips/mips.c (revision 237266) +++ gcc/config/mips/mips.c (working copy) @@ -13588,8 +13588,9 @@ mips_output_jump (rtx *operands, int tar else s += sprintf (s, "%%*"); - s += sprintf (s, "%s%s%s%s%s\t%%%d%s", insn_name, and_link, reg, compact, short_delay, - target_opno, nop); + s += sprintf (s, "%s%s%s%s%s\t%%%d%s", + insn_name, and_link, reg, compact, short_delay, + target_opno, nop); if (!reg_p && TARGET_ABICALLS_PIC2) s += sprintf (s, "\n\t.option\tpic2");