diff options
author | Krzysztof Gogolewski <krzysztof.gogolewski@tweag.io> | 2022-10-27 19:18:02 +0200 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-11-01 12:48:35 -0400 |
commit | b7a001132202e1ebf03dd21c6c7b4cd7a24df501 (patch) | |
tree | fd37ca58f67f2fd68dc7e145d30191c4c6ca1291 /compiler/GHC/Driver/Main.hs | |
parent | edd175c9f9f2988e2836fc3bdc70d627f0f0c5cf (diff) | |
download | haskell-b7a001132202e1ebf03dd21c6c7b4cd7a24df501.tar.gz |
Typo: rename -fwrite-if-simplfied-core to -fwrite-if-simplified-core
Diffstat (limited to 'compiler/GHC/Driver/Main.hs')
-rw-r--r-- | compiler/GHC/Driver/Main.hs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/GHC/Driver/Main.hs b/compiler/GHC/Driver/Main.hs index c2e69a4087..0eb6f9e89c 100644 --- a/compiler/GHC/Driver/Main.hs +++ b/compiler/GHC/Driver/Main.hs @@ -867,7 +867,7 @@ hscRecompStatus -- If missing object code, just say we need to recompile because of object code. (_, OutOfDateItem reason _) -> OutOfDateItem reason Nothing -- If just missing byte code, just use the object code - -- so you should use -fprefer-byte-code with -fwrite-if-simplfied-core or you'll + -- so you should use -fprefer-byte-code with -fwrite-if-simplified-core or you'll -- end up using bytecode on recompilation (_, UpToDateItem {} ) -> just_o @@ -876,7 +876,7 @@ hscRecompStatus -- If missing object code, just say we need to recompile because of object code. (_, OutOfDateItem reason _) -> OutOfDateItem reason Nothing -- If just missing byte code, just use the object code - -- so you should use -fprefer-byte-code with -fwrite-if-simplfied-core or you'll + -- so you should use -fprefer-byte-code with -fwrite-if-simplified-core or you'll -- end up using bytecode on recompilation (OutOfDateItem reason _, _ ) -> OutOfDateItem reason Nothing @@ -1129,7 +1129,7 @@ hscDesugarAndSimplify summary (FrontendTypecheck tc_result) tc_warnings mb_old_h return $ HscUpdate iface - -- We are not generating code or writing an interface with simplfied core so we can skip simplification + -- We are not generating code or writing an interface with simplified core so we can skip simplification -- and generate a simple interface. _ -> do (iface, _details) <- liftIO $ |