X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=gold%2Fdebug.h;h=4a3a06c986319ee72f29c766564d6d59606889f7;hb=5fd104addfddb68844fb8df67be832ee98ad9888;hp=6fd72c2c1c87e08710931600c98be209db445ab3;hpb=afe002dd6619560c569ac0e080cbf220c826f989;p=deliverable%2Fbinutils-gdb.git diff --git a/gold/debug.h b/gold/debug.h index 6fd72c2c1c..4a3a06c986 100644 --- a/gold/debug.h +++ b/gold/debug.h @@ -1,6 +1,6 @@ // debug.h -- gold internal debugging support -*- C++ -*- -// Copyright (C) 2007-2016 Free Software Foundation, Inc. +// Copyright (C) 2007-2020 Free Software Foundation, Inc. // Written by Ian Lance Taylor . // This file is part of gold. @@ -40,10 +40,11 @@ const int DEBUG_RELAXATION = 0x8; const int DEBUG_INCREMENTAL = 0x10; const int DEBUG_LOCATION = 0x20; const int DEBUG_TARGET = 0x40; +const int DEBUG_PLUGIN = 0x80; const int DEBUG_ALL = (DEBUG_TASK | DEBUG_SCRIPT | DEBUG_FILES | DEBUG_RELAXATION | DEBUG_INCREMENTAL - | DEBUG_LOCATION | DEBUG_TARGET); + | DEBUG_LOCATION | DEBUG_TARGET | DEBUG_PLUGIN); // Convert a debug string to the appropriate enum. inline int @@ -59,6 +60,7 @@ debug_string_to_enum(const char* arg) { "incremental", DEBUG_INCREMENTAL }, { "location", DEBUG_LOCATION }, { "target", DEBUG_TARGET }, + { "plugin", DEBUG_PLUGIN }, { "all", DEBUG_ALL } };