summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2022-05-26 13:57:58 +0100
committerMatthew Pickering <matthewtpickering@gmail.com>2022-05-30 08:39:01 +0000
commitf3cf41008f580ca495fa0e2c4ce39f1decd89806 (patch)
tree0404b778fa18b7a010ec47d9b189cd2c2b775296
parentfbf2f254ec85bd696859f939698edfaef8ff708c (diff)
downloadhaskell-wip/t21545.tar.gz
rts: Remove explicit timescale for deprecating -h flagwip/t21545
We originally planned to remove the flag in 9.4 but there's actually no great rush to do so and it's probably less confusing (forever) to keep the message around suggesting an explicit profiling option. Fixes #21545
-rw-r--r--rts/RtsFlags.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/rts/RtsFlags.c b/rts/RtsFlags.c
index 6146cfb989..b99e315083 100644
--- a/rts/RtsFlags.c
+++ b/rts/RtsFlags.c
@@ -1449,7 +1449,7 @@ error = true;
#if !defined(PROFILING)
switch (rts_argv[arg][2]) {
case '\0':
- errorBelch("-h is deprecated and will be removed in the next release (9.4),\nuse -hT instead.");
+ errorBelch("-h is deprecated, use -hT instead.");
FALLTHROUGH;
case 'T':
@@ -2214,7 +2214,7 @@ static bool read_heap_profiling_flag(const char *arg)
bool error = false;
switch (arg[2]) {
case '\0':
- errorBelch("-h is deprecated and will be removed in the next release (9.4),\nuse -hc instead.");
+ errorBelch("-h is deprecated, use -hc instead.");
FALLTHROUGH;
case 'C':
case 'c':