From patchwork Mon Aug 27 18:38:05 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Walter Lee X-Patchwork-Id: 180264 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 167C92C00BE for ; Tue, 28 Aug 2012 04:38:27 +1000 (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=1346697508; h=Comment: DomainKey-Signature:Received:Received:Received:Received:Received: Date:Message-ID:From:To:Subject:Reply-To:MIME-Version: Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:Sender:Delivered-To; bh=d9iCsR3 EpZ1yDzHh4YwdktP/KEI=; b=kvySxsrUJylKmfSqxwmu+ur4NCRzHKamaHNm12+ lGiJvqJWhDYkpfjO7S5nEcoCiAdTOYfyth4NV6rxXAmX6TJdcP3/yLStHtdGwJ0N SB2gN8JA0JlZfBEWyVV20KYuB5YqbrLQezHhTdR6BuHPERqh0U/aAgd96mWBkWWx sTwY= 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:Received:Received:Date:Message-ID:From:To:Subject:Reply-To:MIME-Version:Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=wEr2vUhHTelKQZWlc8YT832lQhRUCo/FWIXtXt6f93caP1mlrMgjyO1MqrESP3 sj3uHVv141X4/jtG3uX039K4xg5lx5QaWZu0GPdLp2Fac6dvijZAJ420s/Ihmpgh Zd8P4PK3bRVm3p/LRhUlDoC2hqViTcxF/BdgTBLd8jukI=; Received: (qmail 11176 invoked by alias); 27 Aug 2012 18:38:21 -0000 Received: (qmail 10908 invoked by uid 22791); 27 Aug 2012 18:38:19 -0000 X-SWARE-Spam-Status: No, hits=-1.7 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from usmamail.tilera.com (HELO USMAMAIL.TILERA.COM) (12.216.194.151) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 27 Aug 2012 18:38:06 +0000 Received: from farm-0038.internal.tilera.com (10.2.0.68) by USMAEXCH2.tad.internal.tilera.com (10.3.0.33) with Microsoft SMTP Server (TLS) id 14.0.694.0; Mon, 27 Aug 2012 14:38:06 -0400 Received: (from walt@localhost) by farm-0038.internal.tilera.com (8.14.4/8.12.11/Submit) id q7RIc5Xp012355; Mon, 27 Aug 2012 14:38:05 -0400 Date: Mon, 27 Aug 2012 14:38:05 -0400 Message-ID: <201208271838.q7RIc5Xp012355@farm-0038.internal.tilera.com> From: Walter Lee To: Subject: [TILE-Gx/TILEPro, committed] mcount typo Reply-To: Walter Lee MIME-Version: 1.0 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 This patch fixes a typo in the mcount function_profiler. * config/tilegx/tilegx.c (tilegx_function_profiler): Fix typo. config/tilepro/tilepro.c (tilepro_function_profiler): Ditto. Index: gcc/config/tilegx/tilegx.c =================================================================== --- gcc/config/tilegx/tilegx.c (revision 190721) +++ gcc/config/tilegx/tilegx.c (working copy) @@ -5313,7 +5313,7 @@ tilegx_function_profiler (FILE *file, in fprintf (file, "\t{\n" "\tmove\tr10, lr\n" - "\tjal\t%s@plt\n" + "\tjal\tplt(%s)\n" "\t}\n", MCOUNT_NAME); } else Index: gcc/config/tilepro/tilepro.c =================================================================== --- gcc/config/tilepro/tilepro.c (revision 190721) +++ gcc/config/tilepro/tilepro.c (working copy) @@ -4914,7 +4914,7 @@ tilepro_function_profiler (FILE *file, i fprintf (file, "\t{\n" "\tmove\tr10, lr\n" - "\tjal\t%s@plt\n" + "\tjal\tplt(%s)\n" "\t}\n", MCOUNT_NAME); } else