From patchwork Thu Nov 7 19:35:19 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Mike Stump X-Patchwork-Id: 289469 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)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id EDF482C0087 for ; Fri, 8 Nov 2013 06:35:40 +1100 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :content-type:mime-version:subject:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to; q=dns; s= default; b=XXMGaWGGh3H1d3jb/8od8Fjfw1qZZakaB3qfnz9DSfGo1PW2APLWw 5gfha+s/ow76+khTgAg6QORcz4owK9sn4iyUPsZ9UBuYssSjMFoPzpZc3WZ05qt4 pz2NoCUZ/eOr8u70AJM07JhQs62ffHMH9EhYZL0CmhtA9XYB9JnpQc= 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 :content-type:mime-version:subject:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to; s=default; bh=SBn27VLVexsnD9AksnwgGXkS5k8=; b=g6UJou1QxX+Ii6iEHs02wxBw6UmN ZcdkIlUqQzkAfONwOB2pFWhRZqaQgl5Cy93V+m5/0yIaFVi/w1bWWdIUZsm0nf7Y XiAKwiaW593p0WLUqtiOv8OmsxCKv/Ht2Kw7H2kF/i53zc3R5dJ/qCrEM1LAoDov xAq0GL4ZGyq+dD8= Received: (qmail 6491 invoked by alias); 7 Nov 2013 19:35:29 -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 6481 invoked by uid 89); 7 Nov 2013 19:35:29 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=2.5 required=5.0 tests=AWL, BAYES_50, FREEMAIL_FROM, RDNS_NONE, SPAM_SUBJECT, SPF_PASS, URIBL_BLOCKED autolearn=no version=3.3.2 X-HELO: qmta09.emeryville.ca.mail.comcast.net Received: from Unknown (HELO qmta09.emeryville.ca.mail.comcast.net) (76.96.30.96) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 07 Nov 2013 19:35:27 +0000 Received: from omta07.emeryville.ca.mail.comcast.net ([76.96.30.59]) by qmta09.emeryville.ca.mail.comcast.net with comcast id mggm1m0041GXsucA9jbLgH; Thu, 07 Nov 2013 19:35:20 +0000 Received: from up.mrs.kithrup.com ([24.4.193.8]) by omta07.emeryville.ca.mail.comcast.net with comcast id mjbK1m00R0BKwT48UjbKAd; Thu, 07 Nov 2013 19:35:20 +0000 Mime-Version: 1.0 (Mac OS X Mail 6.6 \(1510\)) Subject: Re: wide-int testing results From: Mike Stump In-Reply-To: <87a9hghzh1.fsf@talisman.default> Date: Thu, 7 Nov 2013 11:35:19 -0800 Cc: gcc-patches@gcc.gnu.org, zadeck@naturalbridge.com Message-Id: <15383DAF-44A4-41FD-9071-04CFDB93471C@comcast.net> References: <87a9hghzh1.fsf@talisman.default> To: Richard Sandiford X-IsSubscribed: yes On Nov 7, 2013, at 9:51 AM, Richard Sandiford wrote: > pdp11 and picochip-elf don't build on mainline due to: > > gcc/target-def.h:69:34: error: ‘default_stabs_asm_out_destructor’ was not declared in this scope > # define TARGET_ASM_DESTRUCTOR default_stabs_asm_out_destructor Fixed: 2013-11-07 Mike Stump * config/pdp11/pdp11.c: Include dbxout.h. * config/picochip/picochip.c: Likewise. /* Target AE ISA information. */ Index: config/pdp11/pdp11.c =================================================================== --- config/pdp11/pdp11.c (revision 204436) +++ config/pdp11/pdp11.c (working copy) @@ -40,6 +40,7 @@ along with GCC; see the file COPYING3. #include "target-def.h" #include "df.h" #include "opts.h" +#include "dbxout.h" /* this is the current value returned by the macro FIRST_PARM_OFFSET defined in tm.h */ Index: config/picochip/picochip.c =================================================================== --- config/picochip/picochip.c (revision 204436) +++ config/picochip/picochip.c (working copy) @@ -60,6 +60,7 @@ along with GCC; see the file COPYING3. #include "timevar.h" /* For TV_SCHED2, in picochip_reorg. */ #include "libfuncs.h" /* For memcpy_libfuncs, etc. */ #include "df.h" /* For df_regs_ever_live_df_regs_ever_live_pp, etc. */ +#include "dbxout.h"