From patchwork Thu Jun 11 14:22:56 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike Frysinger X-Patchwork-Id: 7119 X-Patchwork-Delegate: vapier@gentoo.org Received: (qmail 66413 invoked by alias); 11 Jun 2015 14:23:04 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 66392 invoked by uid 89); 11 Jun 2015 14:23:03 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=AWL, BAYES_00, SPF_PASS, T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: smtp.gentoo.org Received: from smtp.gentoo.org (HELO smtp.gentoo.org) (140.211.166.183) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Thu, 11 Jun 2015 14:23:02 +0000 Received: from localhost.localdomain (localhost [127.0.0.1]) by smtp.gentoo.org (Postfix) with ESMTP id 4E9E5340CE5 for ; Thu, 11 Jun 2015 14:23:00 +0000 (UTC) From: Mike Frysinger To: gdb-patches@sourceware.org Subject: [PATCH] sim: frv: drop custom debug mask Date: Thu, 11 Jun 2015 10:22:56 -0400 Message-Id: <1434032576-30919-1-git-send-email-vapier@gentoo.org> X-IsSubscribed: yes This is the only sim that sets up its own WITH_TRACE mask and it conflicts with the user setting their own list at configure time. Drop it to match all the other sims. --- sim/frv/ChangeLog | 4 ++++ sim/frv/sim-main.h | 5 ----- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/sim/frv/ChangeLog b/sim/frv/ChangeLog index 6b351bf..53edf96 100644 --- a/sim/frv/ChangeLog +++ b/sim/frv/ChangeLog @@ -1,3 +1,7 @@ +2015-06-11 Mike Frysinger + + * sim-main.h (WITH_TRACE): Delete. + 2015-04-18 Mike Frysinger * sim-main.h (USING_SIM_BASE_H): Delete. diff --git a/sim/frv/sim-main.h b/sim/frv/sim-main.h index 110d761..d5a67cb 100644 --- a/sim/frv/sim-main.h +++ b/sim/frv/sim-main.h @@ -19,11 +19,6 @@ along with this program. If not, see . */ /* Main header for the frv. */ -/* Set the mask of unsupported traces. */ -#define WITH_TRACE \ - (~(TRACE_alu | TRACE_decode | TRACE_memory | TRACE_model | TRACE_fpu \ - | TRACE_branch | TRACE_debug)) - /* sim-basics.h includes config.h but cgen-types.h must be included before sim-basics.h and cgen-types.h needs config.h. */ #include "config.h"