diff options
author | Gabor Greif <ggreif@gmail.com> | 2017-10-22 23:05:02 +0200 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2017-10-30 11:31:35 +0100 |
commit | ec356e8a3530557638bc30df07f0253c6527fb13 (patch) | |
tree | 1601db793a497b5256e08e832796aa53e092ae05 /compiler | |
parent | 1b115b16729a3414cc1e07fb1efe7f34c990b1f0 (diff) | |
download | haskell-ec356e8a3530557638bc30df07f0253c6527fb13.tar.gz |
Typofix in panic
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/nativeGen/RegAlloc/Liveness.hs | 2 |
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]) |