diff options
author | Gabor Greif <ggreif@gmail.com> | 2019-12-09 12:05:15 -0500 |
---|---|---|
committer | Ben Gamari <ben@well-typed.com> | 2019-12-09 12:05:15 -0500 |
commit | d46a72e19e1b508358827e7270139f3273915697 (patch) | |
tree | 6eb25ced737bf3f88591c880669d94f5b172560f /compiler/GHC/StgToCmm/Expr.hs | |
parent | 0a4ca9eb152c6bfbc3aad71c180a38bbfeca5bfb (diff) | |
download | haskell-d46a72e19e1b508358827e7270139f3273915697.tar.gz |
Fix comment typos
The below is only necessary to fix the CI perf fluke that
happened in 9897e8c8ef0b19a9571ef97a1d9bb050c1ee9121:
-------------------------
Metric Decrease:
T5837
T6048
T9020
T12425
T12234
T13035
T12150
Naperian
-------------------------
Diffstat (limited to 'compiler/GHC/StgToCmm/Expr.hs')
-rw-r--r-- | compiler/GHC/StgToCmm/Expr.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/GHC/StgToCmm/Expr.hs b/compiler/GHC/StgToCmm/Expr.hs index 07113a4e82..38d35fc031 100644 --- a/compiler/GHC/StgToCmm/Expr.hs +++ b/compiler/GHC/StgToCmm/Expr.hs @@ -572,7 +572,7 @@ isSimpleScrut _ _ = return False isSimpleOp :: StgOp -> [StgArg] -> FCode Bool -- True iff the op cannot block or allocate isSimpleOp (StgFCallOp (CCall (CCallSpec _ _ safe)) _) _ = return $! not (playSafe safe) --- dataToTag# evalautes its argument, see Note [dataToTag#] in primops.txt.pp +-- dataToTag# evaluates its argument, see Note [dataToTag#] in primops.txt.pp isSimpleOp (StgPrimOp DataToTagOp) _ = return False isSimpleOp (StgPrimOp op) stg_args = do arg_exprs <- getNonVoidArgAmodes stg_args |