X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=gold%2Fdebug.h;h=db18f9102110aa3c950d0448e20b20b5985f4131;hb=2480b6fa946bb2d2dc993b1c4a83a8e1258a75e8;hp=6fd72c2c1c87e08710931600c98be209db445ab3;hpb=afe002dd6619560c569ac0e080cbf220c826f989;p=deliverable%2Fbinutils-gdb.git diff --git a/gold/debug.h b/gold/debug.h index 6fd72c2c1c..db18f91021 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-2019 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 } };