diff options
Diffstat (limited to 'gold/debug.h')
-rw-r--r-- | gold/debug.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gold/debug.h b/gold/debug.h index 4b9ef19..7fdbee7 100644 --- a/gold/debug.h +++ b/gold/debug.h @@ -37,9 +37,10 @@ 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 - | DEBUG_RELAXATION); + | DEBUG_RELAXATION | DEBUG_INCREMENTAL); // Convert a debug string to the appropriate enum. inline int @@ -52,6 +53,7 @@ debug_string_to_enum(const char* arg) { "script", DEBUG_SCRIPT }, { "files", DEBUG_FILES }, { "relaxation", DEBUG_RELAXATION }, + { "incremental", DEBUG_INCREMENTAL }, { "all", DEBUG_ALL } }; |