summaryrefslogtreecommitdiff
path: root/compiler/main/TidyPgm.lhs
diff options
context:
space:
mode:
authorManuel M T Chakravarty <chak@cse.unsw.edu.au>2011-08-19 00:17:10 +1000
committerManuel M T Chakravarty <chak@cse.unsw.edu.au>2011-08-19 01:16:56 +1000
commit9282550cc1f1b7915642871cb6010ba45988683a (patch)
tree98788f0f6d802c872c683c6fe242f28c22b02d7c /compiler/main/TidyPgm.lhs
parent46fa261eee74c1c1a1be52f9394ff131183024da (diff)
downloadhaskell-9282550cc1f1b7915642871cb6010ba45988683a.tar.gz
Improve import and export of vectorisation information
Diffstat (limited to 'compiler/main/TidyPgm.lhs')
-rw-r--r--compiler/main/TidyPgm.lhs18
1 files changed, 9 insertions, 9 deletions
diff --git a/compiler/main/TidyPgm.lhs b/compiler/main/TidyPgm.lhs
index 8369180de7..e278f6a2c8 100644
--- a/compiler/main/TidyPgm.lhs
+++ b/compiler/main/TidyPgm.lhs
@@ -331,20 +331,20 @@ tidyProgram hsc_env (ModGuts { mg_module = mod, mg_exports = exports,
-- we want Global, IdInfo-rich (or not) DFunId in the
-- tidy_insts
- ; tidy_rules = tidyRules tidy_env ext_rules
- -- You might worry that the tidy_env contains IdInfo-rich stuff
- -- and indeed it does, but if omit_prags is on, ext_rules is
- -- empty
+ ; tidy_rules = tidyRules tidy_env ext_rules
+ -- You might worry that the tidy_env contains IdInfo-rich stuff
+ -- and indeed it does, but if omit_prags is on, ext_rules is
+ -- empty
; tidy_vect_info = tidyVectInfo tidy_env vect_info
- -- See Note [Injecting implicit bindings]
- ; all_tidy_binds = implicit_binds ++ tidy_binds
+ -- See Note [Injecting implicit bindings]
+ ; all_tidy_binds = implicit_binds ++ tidy_binds
- ; alg_tycons = filter isAlgTyCon (typeEnvTyCons type_env)
- }
+ ; alg_tycons = filter isAlgTyCon (typeEnvTyCons type_env)
+ }
- ; endPass dflags CoreTidy all_tidy_binds tidy_rules
+ ; endPass dflags CoreTidy all_tidy_binds tidy_rules
-- If the endPass didn't print the rules, but ddump-rules is on, print now
; dumpIfSet (dopt Opt_D_dump_rules dflags