summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Tennie <sven.tennie@wire.com>2023-05-02 15:34:16 +0000
committerSven Tennie <sven.tennie@wire.com>2023-05-02 15:34:16 +0000
commit1303b53d58b539e2324484ce0427a9fdd3c62f89 (patch)
tree83e75039fc70bfb1a8316e4aa9425bb877e722a5
parent30a10abcc56166885fc457f55a66acbeddae06cd (diff)
downloadhaskell-1303b53d58b539e2324484ce0427a9fdd3c62f89.tar.gz
Remove TAB character
The whitespace linter doesn't like it.
-rw-r--r--compiler/GHC/CmmToAsm/RV64/Ppr.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/GHC/CmmToAsm/RV64/Ppr.hs b/compiler/GHC/CmmToAsm/RV64/Ppr.hs
index b53477e2b5..a91b99479e 100644
--- a/compiler/GHC/CmmToAsm/RV64/Ppr.hs
+++ b/compiler/GHC/CmmToAsm/RV64/Ppr.hs
@@ -537,7 +537,7 @@ pprInstr platform instr = case instr of
LDR _f o1 (OpImm (ImmCLbl lbl)) ->
-- fixing this is _really_ annoyin we need to generate code like:
- -- 1: auipc x16, %pcrel_hi(<lbl>)
+ -- 1: auipc x16, %pcrel_hi(<lbl>)
-- addi x16, x16, %pcrel_lo(1b)
-- I really dislike this (refer back to label 1 syntax from the assembler.)
--