diff options
author | Sven Tennie <sven.tennie@wire.com> | 2023-05-02 15:34:16 +0000 |
---|---|---|
committer | Sven Tennie <sven.tennie@wire.com> | 2023-05-02 15:34:16 +0000 |
commit | 1303b53d58b539e2324484ce0427a9fdd3c62f89 (patch) | |
tree | 83e75039fc70bfb1a8316e4aa9425bb877e722a5 | |
parent | 30a10abcc56166885fc457f55a66acbeddae06cd (diff) | |
download | haskell-1303b53d58b539e2324484ce0427a9fdd3c62f89.tar.gz |
Remove TAB character
The whitespace linter doesn't like it.
-rw-r--r-- | compiler/GHC/CmmToAsm/RV64/Ppr.hs | 2 |
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.) -- |