diff options
author | Ian Lynagh <igloo@earth.li> | 2012-06-13 17:36:47 +0100 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2012-06-13 17:36:47 +0100 |
commit | ac6edfae76aac302c0190895d5203c584a3a2f4b (patch) | |
tree | 2e15eea87f6b6e717d652956672cd442d35820cf /compiler/codeGen | |
parent | 5633b56169b49dfb96e4add8475e3c4303db7e1e (diff) | |
download | haskell-ac6edfae76aac302c0190895d5203c584a3a2f4b.tar.gz |
Remove more redundant Platform arguments
Diffstat (limited to 'compiler/codeGen')
-rw-r--r-- | compiler/codeGen/CodeGen.lhs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/codeGen/CodeGen.lhs b/compiler/codeGen/CodeGen.lhs index 24ac064256..ce12d43bbf 100644 --- a/compiler/codeGen/CodeGen.lhs +++ b/compiler/codeGen/CodeGen.lhs @@ -77,7 +77,7 @@ codeGen dflags this_mod data_tycons cost_centre_info stg_binds hpc_info = do -- initialisation routines; see Note -- [pipeline-split-init]. - dumpIfSet_dyn dflags Opt_D_dump_cmm "Cmm" (pprCmms (targetPlatform dflags) code_stuff) + dumpIfSet_dyn dflags Opt_D_dump_cmm "Cmm" (pprCmms code_stuff) return code_stuff mkModuleInit |