From patchwork Fri Mar 18 17:48:44 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexander Monakov X-Patchwork-Id: 599621 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 3qRXmJ0LsPz9sBg for ; Sat, 19 Mar 2016 04:49:34 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b=BfKj2Di7; 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:from :to:subject:date:message-id:in-reply-to:references; q=dns; s= default; b=MEXa2eIu0FnVidKiNlj0FtNIp6AglgD8HGZntHsWX044n/hww+eUh uuUpvfLfYXQkm69Fu+mD5Gh3RX/HJxRYzcoJManO2WHJJbeqm007enBgWUngUzod 9nw7+PyC4QFo6Li+4NKFC4uzYCEnxA2iZ1ILxoLlEHBx5DOZ89iQog= 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:from :to:subject:date:message-id:in-reply-to:references; s=default; bh=2vVuiPQ5KPnF6bhklQk2jTcgrbA=; b=BfKj2Di71Sgn2EgxSJIHCrgdz9Xm fQAW0SzD9DIG3AxVrYakfFRWTtH/3UMXYOY9b7XZgi6sQj+sYiHAc9lCfg2vX/8E GzpM6E9VfOnr2TUCmwg3IfKdOtkp0H3C/hG42kJf9VW2Cys3aQiPY9/yng3EGiYZ TM+F6yZjMGav3bc= Received: (qmail 5857 invoked by alias); 18 Mar 2016 17:48:52 -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 5749 invoked by uid 89); 18 Mar 2016 17:48:52 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.4 required=5.0 tests=AWL, BAYES_00, KAM_LAZY_DOMAIN_SECURITY, RCVD_IN_DNSWL_NONE, RP_MATCHES_RCVD autolearn=no version=3.3.2 spammy=reenable X-HELO: smtp.ispras.ru Received: from smtp.ispras.ru (HELO smtp.ispras.ru) (83.149.199.79) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 18 Mar 2016 17:48:50 +0000 Received: from condor.intra.ispras.ru (unknown [83.149.199.91]) by smtp.ispras.ru (Postfix) with ESMTP id DDE2F22774 for ; Fri, 18 Mar 2016 20:48:47 +0300 (MSK) Received: by condor.intra.ispras.ru (Postfix, from userid 23246) id 8C33A1220729; Fri, 18 Mar 2016 20:48:47 +0300 (MSK) From: Alexander Monakov To: gcc-patches@gcc.gnu.org Subject: [gomp-nvptx 4/7] nvptx backend: re-enable line info generation Date: Fri, 18 Mar 2016 20:48:44 +0300 Message-Id: <1458323327-9908-5-git-send-email-amonakov@ispras.ru> In-Reply-To: <1458323327-9908-1-git-send-email-amonakov@ispras.ru> References: <1458323327-9908-1-git-send-email-amonakov@ispras.ru> X-IsSubscribed: yes * config/nvptx/nvptx.c (nvptx_option_override): Remove custom handling of debug info options. --- gcc/ChangeLog.gomp-nvptx | 5 +++++ gcc/config/nvptx/nvptx.c | 9 --------- 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/gcc/config/nvptx/nvptx.c b/gcc/config/nvptx/nvptx.c index 81dd9a2..e69e0be 100644 --- a/gcc/config/nvptx/nvptx.c +++ b/gcc/config/nvptx/nvptx.c @@ -156,15 +156,6 @@ nvptx_option_override (void) /* Assumes that it will see only hard registers. */ flag_var_tracking = 0; - if (write_symbols == DBX_DEBUG) - /* The stabs testcases want to know stabs isn't supported. */ - sorry ("stabs debug format not supported"); - - /* Actually we don't have any debug format, but don't be - unneccesarily noisy. */ - write_symbols = NO_DEBUG; - debug_info_level = DINFO_LEVEL_NONE; - if (nvptx_optimize < 0) nvptx_optimize = optimize > 0;