gdb: add target_ops::supports_displaced_step
[deliverable/binutils-gdb.git] / gold / debug.h
index 756d1a6f185439b7abc60f5760d67b20c7d8f925..4a3a06c986319ee72f29c766564d6d59606889f7 100644 (file)
@@ -1,6 +1,6 @@
 // debug.h -- gold internal debugging support   -*- C++ -*-
 
-// Copyright (C) 2007-2017 Free Software Foundation, Inc.
+// Copyright (C) 2007-2020 Free Software Foundation, Inc.
 // Written by Ian Lance Taylor <iant@google.com>.
 
 // 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 }
   };
 
This page took 0.023432 seconds and 4 git commands to generate.