diff options
author | Ben Gamari <ben@smart-cactus.org> | 2020-01-06 12:28:15 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-01-20 15:32:52 -0500 |
commit | f3d7fdb3437a6161cf7ff1f30cd0a6563bf07db0 (patch) | |
tree | 812161efad51234a3caebe0b702bc09c99fa6dd1 | |
parent | db24e4803fe9fb13b85fc83193ff4afc407702f6 (diff) | |
download | haskell-f3d7fdb3437a6161cf7ff1f30cd0a6563bf07db0.tar.gz |
llvmGen: Fix typo in readnone attribute
-rw-r--r-- | compiler/llvmGen/Llvm/Types.hs | 2 |
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" |