From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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-Archive: List-Post: List-Help: Sender: gcc-patches-owner@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, 09 Jun 2016 14:48:00 -0000 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 Content-Type: text/plain; charset="US-ASCII" X-SW-Source: 2016-06/txt/msg00688.txt.bz2 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");