diff options
author | Paolo Capriotti <p.capriotti@gmail.com> | 2012-06-05 16:47:02 +0100 |
---|---|---|
committer | Paolo Capriotti <p.capriotti@gmail.com> | 2012-06-05 16:47:02 +0100 |
commit | 0076786de1c4450743803be8b23a0f3e5c47e4ee (patch) | |
tree | 9b867ef1d1c4aacc5652a7e9f05a940970a1c064 /compiler/codeGen/StgCmmCon.hs | |
parent | eb02ad91b1479f389d26394f3e148ee8e45e4ec4 (diff) | |
parent | 09987de4ece1fc634af6b2b37173b12ed46fdf3e (diff) | |
download | haskell-0076786de1c4450743803be8b23a0f3e5c47e4ee.tar.gz |
Merge remote-tracking branch 'origin/unboxed-tuple-arguments2'
Diffstat (limited to 'compiler/codeGen/StgCmmCon.hs')
-rw-r--r-- | compiler/codeGen/StgCmmCon.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/codeGen/StgCmmCon.hs b/compiler/codeGen/StgCmmCon.hs index ee71f5c86a..a7af5662e9 100644 --- a/compiler/codeGen/StgCmmCon.hs +++ b/compiler/codeGen/StgCmmCon.hs @@ -62,7 +62,7 @@ cgTopRhsCon id con args ; when (platformOS (targetPlatform dflags) == OSMinGW32) $ -- Windows DLLs have a problem with static cross-DLL refs. ASSERT( not (isDllConApp dflags con args) ) return () - ; ASSERT( args `lengthIs` dataConRepArity con ) return () + ; ASSERT( args `lengthIs` dataConRepRepArity con ) return () -- LAY IT OUT ; let |