summaryrefslogtreecommitdiff
path: root/compiler
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2017-09-06 12:39:58 +0200
committerGabor Greif <ggreif@gmail.com>2017-09-07 10:59:42 +0200
commitfee403fd935479e8a1ad563fd07585d91c7e04a2 (patch)
tree81297ad894bce4110cdd4619880467f4419df1fe /compiler
parenta04cfcfb50078ace5f5efb797f1bf544d975b520 (diff)
downloadhaskell-fee403fd935479e8a1ad563fd07585d91c7e04a2.tar.gz
Handle W80 in floatFormat
Diffstat (limited to 'compiler')
-rw-r--r--compiler/nativeGen/Format.hs1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/nativeGen/Format.hs b/compiler/nativeGen/Format.hs
index 00811f1375..1e3218517a 100644
--- a/compiler/nativeGen/Format.hs
+++ b/compiler/nativeGen/Format.hs
@@ -68,6 +68,7 @@ floatFormat width
= case width of
W32 -> FF32
W64 -> FF64
+ W80 -> FF80
other -> pprPanic "Format.floatFormat" (ppr other)