From patchwork Mon Mar 11 18:59:54 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Georg-Johann Lay X-Patchwork-Id: 226646 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]) by ozlabs.org (Postfix) with SMTP id 9F22A2C02C5 for ; Tue, 12 Mar 2013 06:00:12 +1100 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=gcc.gnu.org; s=default; x=1363633212; h=Comment: DomainKey-Signature:Received:Received:Received:Received: Message-ID:Date:From:User-Agent:MIME-Version:To:Subject: Content-Type:Content-Transfer-Encoding:Mailing-List:Precedence: List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender: Delivered-To; bh=1m33pF2MXuGLCePbbY6XGQY5jac=; b=ThM7G+zmTT0kRYY hyJKXt8UiM+wr0uXPof5FoM+3uKwdO8M0zPXf1sT7CLTjZkrwd3lQo3MeU6H1gP1 Kax4+6jwnnqoCcXTl+dwcNM3UOWlTs/B6EL4eazyG+/gTjDpNSBFmPaNhDCekPqZ ob3StfKgHFuNgQ11leN9r49fMzwQ= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=gcc.gnu.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:X-RZG-AUTH:X-RZG-CLASS-ID:Received:Message-ID:Date:From:User-Agent:MIME-Version:To:Subject:Content-Type:Content-Transfer-Encoding:X-IsSubscribed:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=m9UW6Z5Mi+0WKPHN0lPcplF1H7wi+rQY6HqkV09ObVf+SJJsenN+4HJxI3HcRM VL/9+1r5eNr55k8/IYcVcDE9y+DP61ZeHHc7h7Fhg03kBNEg1MU49dRwZDX6uXPl rlHjQqQcNAcNmiq824onr6wuTMCFJfhNGCMidg/o25rvA=; Received: (qmail 11283 invoked by alias); 11 Mar 2013 19:00:00 -0000 Received: (qmail 11269 invoked by uid 22791); 11 Mar 2013 19:00:00 -0000 X-SWARE-Spam-Status: No, hits=-1.6 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_NONE X-Spam-Check-By: sourceware.org Received: from mo-p00-ob.rzone.de (HELO mo-p00-ob.rzone.de) (81.169.146.160) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 11 Mar 2013 18:59:56 +0000 X-RZG-AUTH: :LXoWVUeid/7A29J/hMvvT2k715jHQaJercGObUOFkj18odoYNahU4Q== X-RZG-CLASS-ID: mo00 Received: from [192.168.0.22] (business-188-111-022-002.static.arcor-ip.net [188.111.22.2]) by smtp.strato.de (joses mo1) (RZmta 31.19 AUTH) with ESMTPA id e0210fp2BIeY0y for ; Mon, 11 Mar 2013 19:59:54 +0100 (CET) Message-ID: <513E29AA.2060203@gjlay.de> Date: Mon, 11 Mar 2013 19:59:54 +0100 From: Georg-Johann Lay User-Agent: Thunderbird 2.0.0.24 (X11/20100302) MIME-Version: 1.0 To: gcc-patches@gcc.gnu.org Subject: [avr,committed] Fix PR56591 X-IsSubscribed: yes 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 http://gcc.gnu.org/r196604 This adds a missing space in output_operand_lossage. Applied as obvious. Johann PR target/56591 * config/avr/avr.c (avr_print_operand): Add space after '%c' in output_operand_lossage message. Index: config/avr/avr.c =================================================================== --- config/avr/avr.c (revision 196602) +++ config/avr/avr.c (working copy) @@ -2231,7 +2231,7 @@ avr_print_operand (FILE *file, rtx x, in { HOST_WIDE_INT ival = INTVAL (avr_to_int_mode (x)); if (code != 0) - output_operand_lossage ("Unsupported code '%c'for fixed-point:", + output_operand_lossage ("Unsupported code '%c' for fixed-point:", code); fprintf (file, HOST_WIDE_INT_PRINT_DEC, ival); }