From patchwork Thu Feb 4 22:54:36 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: DJ Delorie X-Patchwork-Id: 579307 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 0A9B11402DE for ; Fri, 5 Feb 2016 09:54:49 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b=mYki27yh; 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 :message-id:from:to:subject; q=dns; s=default; b=bbcuXtKqIxx+vrT FEh9AtvQzDwAanTkhhu7TsFLu/ZRRwctbt3RqWYPGltliqGxL9uJ4Zh1cPiVpFrr W5ps28VIGBp4+Yjrlhyky1pbB1S1k8W7mix4VJ4j+qAV4DW0ImW/MoE3yyhx/OpL hXGuUtNgZMD9o9wldBU3ExP7ypsI= 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 :message-id:from:to:subject; s=default; bh=CrnjtYFv1gi2hAxpOsSEp Tkrpgk=; b=mYki27yhqz1z7JClookJqz2joxmesN/lYmu8FA0HcF3iylhGr+rvj 1HUIIwb04XlK8mlch7mOpXMW9ToQ9SsnbJZGcgg60KFKQAQLjjWa8I/1BzqFO+wl CXHWrDTR/hXxNj25Fwu5a+eEO5KNgSmq2Vwr0UCDjzL6kwpNG07B9g= Received: (qmail 45047 invoked by alias); 4 Feb 2016 22:54:40 -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 44982 invoked by uid 89); 4 Feb 2016 22:54:40 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.4 required=5.0 tests=BAYES_00, RP_MATCHES_RCVD, SPF_HELO_PASS autolearn=ham version=3.3.2 spammy=sk:ASM_OUT, sk:asm_out, UD:msp430.c, msp430.c X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Thu, 04 Feb 2016 22:54:39 +0000 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (Postfix) with ESMTPS id 1D703C09FAA5 for ; Thu, 4 Feb 2016 22:54:38 +0000 (UTC) Received: from greed.delorie.com (ovpn-113-69.phx2.redhat.com [10.3.113.69]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u14MsbYv014369 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Thu, 4 Feb 2016 17:54:37 -0500 Received: from greed.delorie.com (greed.delorie.com [127.0.0.1]) by greed.delorie.com (8.14.4/8.14.4) with ESMTP id u14MsaVh028038 for ; Thu, 4 Feb 2016 17:54:36 -0500 Received: (from dj@localhost) by greed.delorie.com (8.14.4/8.14.4/Submit) id u14MsaYD028036; Thu, 4 Feb 2016 17:54:36 -0500 Date: Thu, 4 Feb 2016 17:54:36 -0500 Message-Id: <201602042254.u14MsaYD028036@greed.delorie.com> From: DJ Delorie To: gcc-patches@gcc.gnu.org Subject: msp430: fix function type declarations X-IsSubscribed: yes Minor bug, fixed, committed. * config/msp430/msp430.c (msp430_start_function): Add function type. 2016-02-04 Uros Bizjak Index: config/msp430/msp430.c =================================================================== --- config/msp430/msp430.c (revision 233155) +++ config/msp430/msp430.c (working copy) @@ -2108,12 +2108,13 @@ msp430_start_function (FILE *file, const fputc ('\n', file); fputc ('\t', file); } } switch_to_section (function_section (decl)); + ASM_OUTPUT_TYPE_DIRECTIVE(file, name, "function"); ASM_OUTPUT_FUNCTION_LABEL (file, name, decl); } static const char * const lower_prefix = ".lower"; static const char * const upper_prefix = ".upper"; static const char * const either_prefix = ".either";