summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2020-01-06 12:28:15 -0500
committerBen Gamari <ben@smart-cactus.org>2020-01-12 07:16:58 -0500
commit638524465f2edabe7a14b8a0502c0adfd9fb1dc3 (patch)
tree8c72adb129fbbf19a0cab0f2d654ea48eadc0645
parent1034814ed633cc86bf510724cab0086bb75915da (diff)
downloadhaskell-638524465f2edabe7a14b8a0502c0adfd9fb1dc3.tar.gz
llvmGen: Fix typo in readnone attribute
-rw-r--r--compiler/llvmGen/Llvm/Types.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/llvmGen/Llvm/Types.hs b/compiler/llvmGen/Llvm/Types.hs
index f477aa64ed..fee5af9160 100644
--- a/compiler/llvmGen/Llvm/Types.hs
+++ b/compiler/llvmGen/Llvm/Types.hs
@@ -566,7 +566,7 @@ instance Outputable LlvmFuncAttr where
ppr OptSize = text "optsize"
ppr NoReturn = text "noreturn"
ppr NoUnwind = text "nounwind"
- ppr ReadNone = text "readnon"
+ ppr ReadNone = text "readnone"
ppr ReadOnly = text "readonly"
ppr Ssp = text "ssp"
ppr SspReq = text "ssqreq"