diff options
author | Austin Seipp <aseipp@pobox.com> | 2013-06-18 18:45:31 -0500 |
---|---|---|
committer | Austin Seipp <aseipp@pobox.com> | 2013-06-18 21:26:21 -0500 |
commit | d8ee2b06f3a47ed08239e4f52cec8aa8e49b6ef6 (patch) | |
tree | 57c80577f2c66e4f6853a4525a7e0043151ebc71 /compiler/codeGen | |
parent | 232737a0260a04c6c274a4a619589aa078145416 (diff) | |
download | haskell-d8ee2b06f3a47ed08239e4f52cec8aa8e49b6ef6.tar.gz |
Fix many ASSERT uses under Clang.
Clang doesn't like whitespace between macro and arguments.
Signed-off-by: Austin Seipp <aseipp@pobox.com>
Diffstat (limited to 'compiler/codeGen')
-rw-r--r-- | compiler/codeGen/StgCmmClosure.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/codeGen/StgCmmClosure.hs b/compiler/codeGen/StgCmmClosure.hs index a057484d39..04749e9da1 100644 --- a/compiler/codeGen/StgCmmClosure.hs +++ b/compiler/codeGen/StgCmmClosure.hs @@ -519,7 +519,7 @@ getCallMethod _ _name _ (LFUnknown True) _n_args = SlowCall -- might be a function getCallMethod _ name _ (LFUnknown False) n_args - = ASSERT2 ( n_args == 0, ppr name <+> ppr n_args ) + = ASSERT2( n_args == 0, ppr name <+> ppr n_args ) EnterIt -- Not a function getCallMethod _ _name _ LFBlackHole _n_args |