diff options
Diffstat (limited to 'rts/RtsFlags.c')
-rw-r--r-- | rts/RtsFlags.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/rts/RtsFlags.c b/rts/RtsFlags.c index 380ccc3afc..f592f246db 100644 --- a/rts/RtsFlags.c +++ b/rts/RtsFlags.c @@ -214,7 +214,6 @@ void initRtsFlagsDefaults(void) RtsFlags.ProfFlags.heapProfileInterval = USToTime(100000); // 100ms #if defined(PROFILING) - RtsFlags.ProfFlags.includeTSOs = false; RtsFlags.ProfFlags.showCCSOnException = false; RtsFlags.ProfFlags.maxRetainerSetSize = 8; RtsFlags.ProfFlags.ccsLength = 25; @@ -1686,11 +1685,9 @@ error = true; case 't': /* Include memory used by TSOs in a heap profile */ OPTION_SAFE; - PROFILING_BUILD_ONLY( - RtsFlags.ProfFlags.includeTSOs = true; - ); - unchecked_arg_start++; - goto check_rest; + errorBelch("The -xt option has been removed (#16795)"); + error = true; + break; /* * The option prefix '-xx' is reserved for future |