[commit: ghc] wip/kavon-llvm-improve: fix typo in fn attribute name (38a883b)
git at git.haskell.org
git at git.haskell.org
Fri Sep 28 00:05:03 UTC 2018
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/kavon-llvm-improve
Link : http://ghc.haskell.org/trac/ghc/changeset/38a883bbe1d3a6182c9c2a1cd8448d2cca8b78ab/ghc
>---------------------------------------------------------------
commit 38a883bbe1d3a6182c9c2a1cd8448d2cca8b78ab
Author: Kavon Farvardin <kavon at farvard.in>
Date: Thu Sep 27 17:47:47 2018 -0500
fix typo in fn attribute name
>---------------------------------------------------------------
38a883bbe1d3a6182c9c2a1cd8448d2cca8b78ab
compiler/llvmGen/Llvm/Types.hs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/compiler/llvmGen/Llvm/Types.hs b/compiler/llvmGen/Llvm/Types.hs
index bc7bbaa..a45004d 100644
--- a/compiler/llvmGen/Llvm/Types.hs
+++ b/compiler/llvmGen/Llvm/Types.hs
@@ -564,7 +564,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"
More information about the ghc-commits
mailing list