From patchwork Fri Oct 22 20:04:50 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Koning X-Patchwork-Id: 68956 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 71E50B70AF for ; Sat, 23 Oct 2010 07:09:13 +1100 (EST) Received: (qmail 1305 invoked by alias); 22 Oct 2010 20:09:04 -0000 Received: (qmail 1295 invoked by uid 22791); 22 Oct 2010 20:09:04 -0000 X-SWARE-Spam-Status: No, hits=-1.7 required=5.0 tests=AWL, BAYES_00, T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from ausc60ps301.us.dell.com (HELO ausc60ps301.us.dell.com) (143.166.148.206) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 22 Oct 2010 20:08:59 +0000 X-Loopcount0: from 10.152.240.141 From: Paul Koning Subject: [PATCH] pdp11: define DBX_DEBUGGING_INFO Date: Fri, 22 Oct 2010 16:04:50 -0400 Message-Id: <82CBF983-E23E-472B-ABE9-F897C15E575B@dell.com> To: gcc-patches Mime-Version: 1.0 (Apple Message framework v1081) 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 defines DBX_DEBUGGING_INFO for pdp11, which causes stabs format debug info to be emitted to the assembly output. I don't think the assembler does anything with it, but the clear benefit is that all the testcases that build with -g no longer fail due to "debug output is not supported" messages. Committed. paul ChangeLog: 2010-10-22 Paul Koning * config.pdp11/pdp11.h (DBX_DEBUGGING_INFO): Define. Index: config/pdp11/pdp11.h =================================================================== --- config/pdp11/pdp11.h (revision 165858) +++ config/pdp11/pdp11.h (working copy) @@ -42,7 +42,7 @@ /* Generate DBX debugging information. */ -/* #define DBX_DEBUGGING_INFO */ +#define DBX_DEBUGGING_INFO #define TARGET_40_PLUS (TARGET_40 || TARGET_45) #define TARGET_10 (! TARGET_40_PLUS)