diff --git a/include/parrot/hll.h b/include/parrot/hll.h index 969c3d7cfa..cf3614d75e 100644 --- a/include/parrot/hll.h +++ b/include/parrot/hll.h @@ -67,7 +67,7 @@ void Parrot_register_HLL_type(PARROT_INTERP, INTVAL hll_type) __attribute__nonnull__(1); -void Parrot_init_HLL(PARROT_INTERP) +void Parrot_hll_init_HLL(PARROT_INTERP) __attribute__nonnull__(1); #define ASSERT_ARGS_Parrot_get_ctx_HLL_namespace __attribute__unused__ int _ASSERT_ARGS_CHECK = (\ @@ -90,7 +90,7 @@ void Parrot_init_HLL(PARROT_INTERP) , PARROT_ASSERT_ARG(hll_name)) #define ASSERT_ARGS_Parrot_register_HLL_type __attribute__unused__ int _ASSERT_ARGS_CHECK = (\ PARROT_ASSERT_ARG(interp)) -#define ASSERT_ARGS_Parrot_init_HLL __attribute__unused__ int _ASSERT_ARGS_CHECK = (\ +#define ASSERT_ARGS_Parrot_hll_init_HLL __attribute__unused__ int _ASSERT_ARGS_CHECK = (\ PARROT_ASSERT_ARG(interp)) /* Don't modify between HEADERIZER BEGIN / HEADERIZER END. Your changes will be lost. */ /* HEADERIZER END: src/hll.c */ diff --git a/src/global_setup.c b/src/global_setup.c index 3aa1ab3c8f..9bed12734b 100644 --- a/src/global_setup.c +++ b/src/global_setup.c @@ -235,7 +235,7 @@ Parrot_gbl_setup_2(PARROT_INTERP) /* create the namespace root stash */ interp->root_namespace = Parrot_pmc_new(interp, enum_class_NameSpace); - Parrot_init_HLL(interp); + Parrot_hll_init_HLL(interp); Parrot_pcc_set_namespace(interp, CURRENT_CONTEXT(interp), VTABLE_get_pmc_keyed_int(interp, interp->HLL_namespace, 0)); diff --git a/src/hll.c b/src/hll.c index 4277ea129a..47bca20f8e 100644 --- a/src/hll.c +++ b/src/hll.c @@ -95,7 +95,7 @@ new_hll_entry(PARROT_INTERP, ARGIN_NULLOK(STRING *entry_name)) /* -=item C +=item C Initialises the HLL_info and HLL_namespace fields of the interpreter structure. Registers the default HLL namespace "parrot". @@ -105,9 +105,9 @@ Registers the default HLL namespace "parrot". */ void -Parrot_init_HLL(PARROT_INTERP) +Parrot_hll_init_HLL(PARROT_INTERP) { - ASSERT_ARGS(Parrot_init_HLL) + ASSERT_ARGS(Parrot_hll_init_HLL) interp->HLL_info = Parrot_pmc_new(interp, enum_class_OrderedHash); interp->HLL_namespace =