summaryrefslogtreecommitdiff
path: root/compiler
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2017-10-22 23:05:02 +0200
committerGabor Greif <ggreif@gmail.com>2017-10-30 11:31:35 +0100
commitec356e8a3530557638bc30df07f0253c6527fb13 (patch)
tree1601db793a497b5256e08e832796aa53e092ae05 /compiler
parent1b115b16729a3414cc1e07fb1efe7f34c990b1f0 (diff)
downloadhaskell-ec356e8a3530557638bc30df07f0253c6527fb13.tar.gz
Typofix in panic
Diffstat (limited to 'compiler')
-rw-r--r--compiler/nativeGen/RegAlloc/Liveness.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/nativeGen/RegAlloc/Liveness.hs b/compiler/nativeGen/RegAlloc/Liveness.hs
index db09b0e994..d4fecf2213 100644
--- a/compiler/nativeGen/RegAlloc/Liveness.hs
+++ b/compiler/nativeGen/RegAlloc/Liveness.hs
@@ -814,7 +814,7 @@ computeLiveness
computeLiveness platform sccs
= case checkIsReverseDependent sccs of
Nothing -> livenessSCCs platform mapEmpty [] sccs
- Just bad -> pprPanic "RegAlloc.Liveness.computeLivenss"
+ Just bad -> pprPanic "RegAlloc.Liveness.computeLiveness"
(vcat [ text "SCCs aren't in reverse dependent order"
, text "bad blockId" <+> ppr bad
, ppr sccs])