From patchwork Fri Dec 14 16:50:49 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jeff Law X-Patchwork-Id: 1013639 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=gcc.gnu.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=gcc-patches-return-492504-incoming=patchwork.ozlabs.org@gcc.gnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b="Ow0up/Rc"; dkim-atps=neutral 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 43Gc4n0Fnvz9s3q for ; Sat, 15 Dec 2018 03:51:02 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:to:cc :from:subject:message-id:date:mime-version:content-type; q=dns; s=default; b=V9cTyna4HTJs4YHx2pkVq1W2I8VI/JdGexNscLhdwf6GLI6QMK C5XFM+1OHqm4DkpRKWLAYz9wuyEYbrZvOTK1cXYf3EgC5ri15XfHocmPydedhKD7 YkIkYibjzgP7vWH6Lg7nQQSNEEfiC7x1h8ewiFHGEoMHg4NqxDbhjxeXs= 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:to:cc :from:subject:message-id:date:mime-version:content-type; s= default; bh=WnJ0M6p5Df7eOna0MaBxhGeW7zg=; b=Ow0up/RcFQoXK3jqDpMR U4lpB+FxIpp4wavyPMpZ9idpZCxAlwxLP5PE+F8ATJPop9hGzOFEipdztcRyLNIu GMWsCiyRHZtu1I4wOr2lkn5uAmu73g0O5OIOIf9Zw9XDQwG2Bq3ioQLFRraz3T+l OLpD0tF99JGsPKLE+S/ZE3A= Received: (qmail 100173 invoked by alias); 14 Dec 2018 16:50:55 -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 100158 invoked by uid 89); 14 Dec 2018 16:50:54 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-26.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, SPF_HELO_PASS autolearn=ham version=3.3.2 spammy=Hx-languages-length:956, tm.texi, tmtexi, targetdef 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 ESMTP; Fri, 14 Dec 2018 16:50:53 +0000 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 19E61C06A80E; Fri, 14 Dec 2018 16:50:52 +0000 (UTC) Received: from localhost.localdomain (ovpn-112-24.rdu2.redhat.com [10.10.112.24]) by smtp.corp.redhat.com (Postfix) with ESMTP id 3DEF426FDF; Fri, 14 Dec 2018 16:50:50 +0000 (UTC) To: gcc-patches Cc: Sam Tebbs From: Jeff Law Subject: [committed] Fix minor goof in last change for TARGET_ASM_POST_CFI_STARTPROC Openpgp: preference=signencrypt Message-ID: Date: Fri, 14 Dec 2018 09:50:49 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.3.1 MIME-Version: 1.0 X-IsSubscribed: yes It looks like Jason asked Sam to make a last minute doc change. Sam made that change in the tm.texi file, but target.def has the old text. This causes a build failure. I'm guessing the wrong target.def was committed. Regardless the fix is trivial. Jeff diff --git a/gcc/target.def b/gcc/target.def index c425341ac3..698c3aa796 100644 --- a/gcc/target.def +++ b/gcc/target.def @@ -98,7 +98,8 @@ DEFHOOK (post_cfi_startproc, "This target hook is used to emit assembly strings required by the target\n\ after the .cfi_startproc directive. The first argument is the file stream to\n\ -write the strings to and the second argument is the function\'s declaration.\n\ +write the strings to and the second argument is the function\'s declaration. The\n\ +expected use is to add more .cfi_* directives.\n\ \n\ The default is to not output any assembly strings.", void, (FILE *, tree),