summaryrefslogtreecommitdiff
path: root/compiler/GHC/CmmToAsm/PPC/Regs.hs
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/GHC/CmmToAsm/PPC/Regs.hs')
-rw-r--r--compiler/GHC/CmmToAsm/PPC/Regs.hs5
1 files changed, 3 insertions, 2 deletions
diff --git a/compiler/GHC/CmmToAsm/PPC/Regs.hs b/compiler/GHC/CmmToAsm/PPC/Regs.hs
index 901913f7d9..5b4e179f1a 100644
--- a/compiler/GHC/CmmToAsm/PPC/Regs.hs
+++ b/compiler/GHC/CmmToAsm/PPC/Regs.hs
@@ -47,6 +47,7 @@ module GHC.CmmToAsm.PPC.Regs (
where
import GHC.Prelude
+import GHC.Data.FastString
import GHC.Platform.Reg
import GHC.Platform.Reg.Class
@@ -133,7 +134,7 @@ data Imm
= ImmInt Int
| ImmInteger Integer -- Sigh.
| ImmCLbl CLabel -- AbstractC Label (with baggage)
- | ImmLit String
+ | ImmLit FastString
| ImmIndex CLabel Int
| ImmFloat Rational
| ImmDouble Rational
@@ -146,7 +147,7 @@ data Imm
| HIGHESTA Imm
-strImmLit :: String -> Imm
+strImmLit :: FastString -> Imm
strImmLit s = ImmLit s