diff options
Diffstat (limited to 'compiler/main')
-rw-r--r-- | compiler/main/GHC.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/main/GHC.hs b/compiler/main/GHC.hs index f289cd4229..471a558cc6 100644 --- a/compiler/main/GHC.hs +++ b/compiler/main/GHC.hs @@ -522,7 +522,7 @@ checkBrokenTablesNextToCode dflags = do { broken <- checkBrokenTablesNextToCode' dflags ; when broken $ do { _ <- liftIO $ throwIO $ mkApiErr dflags invalidLdErr - ; fail "unsupported linker" + ; liftIO $ fail "unsupported linker" } } where |