From patchwork Mon Nov 7 23:01:11 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Doug Evans X-Patchwork-Id: 17273 Received: (qmail 56317 invoked by alias); 7 Nov 2016 23:01:14 -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 56278 invoked by uid 89); 7 Nov 2016 23:01:14 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-4.6 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_NONE, RP_MATCHES_RCVD, SPF_PASS autolearn=ham version=3.3.2 spammy=State, H*MI:google, H*M:google, H*MI:sk:94eb2c0 X-HELO: mail-pf0-f201.google.com Received: from mail-pf0-f201.google.com (HELO mail-pf0-f201.google.com) (209.85.192.201) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 07 Nov 2016 23:01:12 +0000 Received: by mail-pf0-f201.google.com with SMTP id f81so754794pfa.2 for ; Mon, 07 Nov 2016 15:01:12 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:message-id:date:subject:from:to; bh=nMsc+cwlClkXw+hUydZ7XugiRewa3ydvtXDBH1Zntco=; b=fts9MDQGs2H6xHRbP6DwAceU8vUZYqYj4q/sICTkJObpwFKO2LjFGRxjt5oOPapN2Q waCiPpaixtnOnLuStIYcSA93Y/zc9mhAF8ORwP9iJTJ5zLHrnek9q3FIEdjUubj51AcN UCDa8ABL7Gg/4ufwBfwSpSF7E4HT36eat8v45+GhhX+iOk8UjIPIBJsa1Ds631qCKbsW 2BRLAKoJhzsUduRqI+KwsX7Wx0OCJSgECLU7Gf6/K9HNYx3nEtvIT9yme+GrTVW4ppy3 1UFxJB6oDWwMEvx4p5sDOSnoKYHpWTsbSvO7JdLi6ZFRsezJpuvnhTWD1JqKZXg7k+MO wZKA== X-Gm-Message-State: ABUngvdWyiGvb6B2PFZHil7jvwdFCbxC7xbw4ATUrxZZ4q3uTscoPuiSAfEKCiKI0xn9k19f2g4FkBMmuVAxSpRQ0Go7AuXwvUSOo0ustaZ2zpEcQUds07ghe4nq22Q7dT81wITSEGOY2hJqi7CcL93GZWRKN0fJwR7WE2JrhT/vqirhpwm6QQ== MIME-Version: 1.0 X-Received: by 10.98.25.197 with SMTP id 188mr2973059pfz.6.1478559671447; Mon, 07 Nov 2016 15:01:11 -0800 (PST) Message-ID: <94eb2c035cb0ff4a410540bdffe5@google.com> Date: Mon, 07 Nov 2016 23:01:11 +0000 Subject: [PATCH] osabi.c (user_osabi_state): Delete osabi_default, unused. From: Doug Evans To: gdb-patches@sourceware.org X-IsSubscribed: yes Hi. While trying to fix an osabi problem I ran across this. [could perhaps be checked in as obvious, but there's no rule requiring that] 2016-11-07 Doug Evans * osabi.c (user_osabi_state): Delete osabi_default, unused. diff --git a/gdb/osabi.c b/gdb/osabi.c index 8b44a85..0c4f98b 100644 --- a/gdb/osabi.c +++ b/gdb/osabi.c @@ -31,7 +31,7 @@ #endif /* State for the "set osabi" command. */ -static enum { osabi_auto, osabi_default, osabi_user } user_osabi_state; +static enum { osabi_auto, osabi_user } user_osabi_state; static enum gdb_osabi user_selected_osabi; static const char *gdb_osabi_available_names[GDB_OSABI_INVALID + 3] = { "auto",