projects
/
ghc-hetmet.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6777144
)
Fixed apparent typo in STRICT1(f) of HsVersions.h
author
Michael D. Adams
<t-madams@microsoft.com>
Fri, 4 May 2007 14:23:25 +0000
(14:23 +0000)
committer
Michael D. Adams
<t-madams@microsoft.com>
Fri, 4 May 2007 14:23:25 +0000
(14:23 +0000)
compiler/HsVersions.h
patch
|
blob
|
history
diff --git
a/compiler/HsVersions.h
b/compiler/HsVersions.h
index
f11aa21
..
299ad68
100644
(file)
--- a/
compiler/HsVersions.h
+++ b/
compiler/HsVersions.h
@@
-67,7
+67,7
@@
import qualified FastString as FS
#define FSLIT(x) (FS.mkFastString# (x#))
-- Useful for declaring arguments to be strict
-#define STRICT1(f) f a b c | a `seq` False = undefined
+#define STRICT1(f) f a | a `seq` False = undefined
#define STRICT2(f) f a b | a `seq` b `seq` False = undefined
#define STRICT3(f) f a b c | a `seq` b `seq` c `seq` False = undefined
#define STRICT4(f) f a b c d | a `seq` b `seq` c `seq` d `seq` False = undefined