diff options
Diffstat (limited to 'compiler/nativeGen/Format.hs')
-rw-r--r-- | compiler/nativeGen/Format.hs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler/nativeGen/Format.hs b/compiler/nativeGen/Format.hs index 00811f1375..82ecbecc14 100644 --- a/compiler/nativeGen/Format.hs +++ b/compiler/nativeGen/Format.hs @@ -20,6 +20,8 @@ module Format ( where +import GhcPrelude + import Cmm import Outputable @@ -68,6 +70,7 @@ floatFormat width = case width of W32 -> FF32 W64 -> FF64 + W80 -> FF80 other -> pprPanic "Format.floatFormat" (ppr other) |