diff options
author | Krzysztof Gogolewski <krz.gogolewski@gmail.com> | 2018-08-05 22:13:34 +0200 |
---|---|---|
committer | Krzysztof Gogolewski <krz.gogolewski@gmail.com> | 2018-08-05 22:13:34 +0200 |
commit | 0095cde3474cf487296b6e52bf75130b10827607 (patch) | |
tree | f9f915396a27a8987b5275efcb1df796081b6af2 /compiler/llvmGen/LlvmCodeGen/CodeGen.hs | |
parent | 73683f143d352343b00b1ab4f3abeb38b81794be (diff) | |
download | haskell-0095cde3474cf487296b6e52bf75130b10827607.tar.gz |
Fix typos
Diffstat (limited to 'compiler/llvmGen/LlvmCodeGen/CodeGen.hs')
-rw-r--r-- | compiler/llvmGen/LlvmCodeGen/CodeGen.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/llvmGen/LlvmCodeGen/CodeGen.hs b/compiler/llvmGen/LlvmCodeGen/CodeGen.hs index f25cb79367..dba1275c42 100644 --- a/compiler/llvmGen/LlvmCodeGen/CodeGen.hs +++ b/compiler/llvmGen/LlvmCodeGen/CodeGen.hs @@ -1534,8 +1534,8 @@ genMachOp_slow opt op [x, y] = case op of panicOp = panic $ "LLVM.CodeGen.genMachOp_slow: unary op encountered" ++ "with two arguments! (" ++ show op ++ ")" --- More then two expression, invalid! -genMachOp_slow _ _ _ = panic "genMachOp: More then 2 expressions in MachOp!" +-- More than two expression, invalid! +genMachOp_slow _ _ _ = panic "genMachOp: More than 2 expressions in MachOp!" -- | Handle CmmLoad expression. |