diff options
author | simonpj@microsoft.com <unknown> | 2010-11-12 17:20:49 +0000 |
---|---|---|
committer | simonpj@microsoft.com <unknown> | 2010-11-12 17:20:49 +0000 |
commit | 4db9ea9ec8b4ae0db74259bb87319643de1fd469 (patch) | |
tree | 2c4056ac3fe91e2ebfd74d9124d571d34792eee3 /compiler/utils/Encoding.hs | |
parent | 64557b454b1a184ef9ee177806a05b75c79c0eb6 (diff) | |
download | haskell-4db9ea9ec8b4ae0db74259bb87319643de1fd469.tar.gz |
Add LANGUAGE BangPatterns to modules that use them
Diffstat (limited to 'compiler/utils/Encoding.hs')
-rw-r--r-- | compiler/utils/Encoding.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/utils/Encoding.hs b/compiler/utils/Encoding.hs index 336d9f0474..84b4e092f1 100644 --- a/compiler/utils/Encoding.hs +++ b/compiler/utils/Encoding.hs @@ -1,3 +1,4 @@ +{-# LANGUAGE BangPatterns #-} {-# OPTIONS_GHC -O #-} -- We always optimise this, otherwise performance of a non-optimised -- compiler is severely affected |