diff options
-rw-r--r-- | hadrian/doc/flavours.md | 2 | ||||
-rw-r--r-- | hadrian/src/Flavour.hs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/hadrian/doc/flavours.md b/hadrian/doc/flavours.md index b4b36f556d..f0d34ddc90 100644 --- a/hadrian/doc/flavours.md +++ b/hadrian/doc/flavours.md @@ -221,7 +221,7 @@ The supported transformers are listed below: dynamic linker. You should use a flavour that builds profiling libs and rts, i.e. not <code>quick</code>. - This flag adds cost centres with the -fprof-late-ccs flag. </td> + This flag adds cost centres with the -fprof-late flag. </td> </tr> <tr> <td><code>no_dynamic_ghc</code></td> diff --git a/hadrian/src/Flavour.hs b/hadrian/src/Flavour.hs index 04eddf8e88..25416294e7 100644 --- a/hadrian/src/Flavour.hs +++ b/hadrian/src/Flavour.hs @@ -207,7 +207,7 @@ enableIPE = enableLateCCS :: Flavour -> Flavour enableLateCCS = - let Right kv = parseKV "stage1.*.ghc.hs.opts += -fprof-late-ccs" + let Right kv = parseKV "stage1.*.ghc.hs.opts += -fprof-late" Right transformer = applySetting kv in transformer |