From: simonpj Date: Mon, 16 Aug 2004 16:14:59 +0000 (+0000) Subject: [project @ 2004-08-16 16:14:59 by simonpj] X-Git-Tag: Initial_conversion_from_CVS_complete~1726 X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=5938a5f33a166374d9af7caa0638d65527e28d1c [project @ 2004-08-16 16:14:59 by simonpj] stg_interp_constr_entry and friends don't have info tables, so declare them using RTS_FUN() rather than RTS_ENTRY(). --- diff --git a/ghc/includes/StgMiscClosures.h b/ghc/includes/StgMiscClosures.h index ef39a8e..caf9d13 100644 --- a/ghc/includes/StgMiscClosures.h +++ b/ghc/includes/StgMiscClosures.h @@ -45,15 +45,15 @@ RTS_ENTRY(stg_upd_frame_ret); RTS_ENTRY(stg_seq_frame_ret); /* Entry code for constructors created by the bytecode interpreter */ -RTS_ENTRY(stg_interp_constr_entry); -RTS_ENTRY(stg_interp_constr1_entry); -RTS_ENTRY(stg_interp_constr2_entry); -RTS_ENTRY(stg_interp_constr3_entry); -RTS_ENTRY(stg_interp_constr4_entry); -RTS_ENTRY(stg_interp_constr5_entry); -RTS_ENTRY(stg_interp_constr6_entry); -RTS_ENTRY(stg_interp_constr7_entry); -RTS_ENTRY(stg_interp_constr8_entry); +RTS_FUN(stg_interp_constr_entry); +RTS_FUN(stg_interp_constr1_entry); +RTS_FUN(stg_interp_constr2_entry); +RTS_FUN(stg_interp_constr3_entry); +RTS_FUN(stg_interp_constr4_entry); +RTS_FUN(stg_interp_constr5_entry); +RTS_FUN(stg_interp_constr6_entry); +RTS_FUN(stg_interp_constr7_entry); +RTS_FUN(stg_interp_constr8_entry); /* Magic glue code for when compiled code returns a value in R1/F1/D1 or a VoidRep to the interpreter. */