Repository : ssh://darcs.haskell.org//srv/darcs/ghc On branch : master
http://hackage.haskell.org/trac/ghc/changeset/ebb67a58b66c2d5d4db53b373756b212f6602d57 >--------------------------------------------------------------- commit ebb67a58b66c2d5d4db53b373756b212f6602d57 Author: Erik de Castro Lopo <[email protected]> Date: Fri Jun 17 10:41:39 2011 +1000 FIX BUILD on PPC. Define default genCCall with correct number of args. >--------------------------------------------------------------- compiler/nativeGen/X86/CodeGen.hs | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/compiler/nativeGen/X86/CodeGen.hs b/compiler/nativeGen/X86/CodeGen.hs index 3898f27..6a40e08 100644 --- a/compiler/nativeGen/X86/CodeGen.hs +++ b/compiler/nativeGen/X86/CodeGen.hs @@ -1953,7 +1953,7 @@ genCCall target dest_regs args = do width = typeWidth arg_rep #else -genCCall = panic "X86.genCCAll: not defined" +genCCall _ _ _ = panic "X86.genCCAll: not defined" #endif /* x86_64_TARGET_ARCH */ _______________________________________________ Cvs-ghc mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-ghc
