diff options
author | Krzysztof Gogolewski <krzysztof.gogolewski@tweag.io> | 2020-07-11 03:02:09 +0200 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-07-18 07:26:45 -0400 |
commit | 12f9035200424ec8104484f154a040d612fee99d (patch) | |
tree | 550c799d324d25f15b4dcbe0e5e4b4d61d6a4906 /compiler/GHC/Tc/Gen/Expr.hs | |
parent | e5525a51900623e04ec914e9dcc7f4ad1fd3b528 (diff) | |
download | haskell-12f9035200424ec8104484f154a040d612fee99d.tar.gz |
Remove {-# CORE #-} pragma (part of #18048)
This pragma has no effect since 2011.
It was introduced for External Core, which no longer exists.
Updates haddock submodule.
Diffstat (limited to 'compiler/GHC/Tc/Gen/Expr.hs')
-rw-r--r-- | compiler/GHC/Tc/Gen/Expr.hs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/GHC/Tc/Gen/Expr.hs b/compiler/GHC/Tc/Gen/Expr.hs index 8bef4b4b8e..a6d2427f8d 100644 --- a/compiler/GHC/Tc/Gen/Expr.hs +++ b/compiler/GHC/Tc/Gen/Expr.hs @@ -1082,7 +1082,6 @@ tcExpr other _ = pprPanic "tcLExpr" (ppr other) tcExprPrag :: HsPragE GhcRn -> HsPragE GhcTc tcExprPrag (HsPragSCC x1 src ann) = HsPragSCC x1 src ann -tcExprPrag (HsPragCore x1 src lbl) = HsPragCore x1 src lbl tcExprPrag (HsPragTick x1 src info srcInfo) = HsPragTick x1 src info srcInfo |