* options.h (General_options): Add --toc-sort/--no-toc-sort.
[deliverable/binutils-gdb.git] / gold / debug.h
index 8428dc81f0700cd4537da94ed2cf067650fa2bba..7fdbee78a2ade8440d06d12ea68a1b0b9c7de919 100644 (file)
@@ -36,8 +36,11 @@ namespace gold
 const int DEBUG_TASK = 0x1;
 const int DEBUG_SCRIPT = 0x2;
 const int DEBUG_FILES = 0x4;
+const int DEBUG_RELAXATION = 0x8;
+const int DEBUG_INCREMENTAL = 0x10;
 
-const int DEBUG_ALL = DEBUG_TASK | DEBUG_SCRIPT | DEBUG_FILES;
+const int DEBUG_ALL = (DEBUG_TASK | DEBUG_SCRIPT | DEBUG_FILES
+                      | DEBUG_RELAXATION | DEBUG_INCREMENTAL);
 
 // Convert a debug string to the appropriate enum.
 inline int
@@ -49,6 +52,8 @@ debug_string_to_enum(const char* arg)
     { "task", DEBUG_TASK },
     { "script", DEBUG_SCRIPT },
     { "files", DEBUG_FILES },
+    { "relaxation", DEBUG_RELAXATION },
+    { "incremental", DEBUG_INCREMENTAL },
     { "all", DEBUG_ALL }
   };
 
This page took 0.023505 seconds and 4 git commands to generate.