You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DEF_WARNING(W_ASM_CANNOT_UNBIND_UNDESIGNATED_STACK_VARIABLE, (WG_SYMBOL), WSTATE_ERROR, { struct symbol const *sym = ARG(struct symbol const *); WARNF("Cannot unbind undesignated stack variable `%s' at this time", SYMBOL_NAME(sym)); PRINT_SYMBOL_DECLARATION(sym); })
606
606
DEF_WARNING(W_ASM_DELETED_STACK_VARIABLE_ISNT_UNBOUND, (WG_SYMBOL), WSTATE_WARN, { struct symbol const *sym = ARG(struct symbol const *); WARNF("Deleting stack variable `%s' will not cause the symbol to become unbound", SYMBOL_NAME(sym)); PRINT_SYMBOL_DECLARATION(sym); })
607
607
DEF_WARNING(W_ASM_CANNOT_WRITE_SYMBOL, (WG_SYMBOL), WSTATE_ERROR, { struct symbol const *sym = ARG(struct symbol const *); WARNF("Cannot write to symbol `%s' of class `%s'", SYMBOL_NAME(sym), SYMBOL_TYPE_NAME(sym->s_type)); PRINT_SYMBOL_DECLARATION(sym); })
608
-
DEF_WARNING(W_ASM_EXTERNAL_SYMBOL_IS_READONLY, (WG_SYMBOL), WSTATE_ERROR, { struct symbol const *sym = ARG(struct symbol const *); WARNF("Cannot modify read-only external symbol `%s from %s'", SYMBOL_EXTERN_SYMBOL(sym)->ss_name, DeeModule_GetShortName((DeeObject *)sym->s_extern.e_module)); PRINT_SYMBOL_DECLARATION(sym); })
608
+
DEF_WARNING(W_ASM_EXTERNAL_SYMBOL_IS_READONLY, (WG_SYMBOL), WSTATE_ERROR, { struct symbol const *sym = ARG(struct symbol const *); WARNF("Cannot modify read-only external symbol `%s from %s'", SYMBOL_EXTERN_SYMBOL(sym)->ss_name, DeeModule_GetShortName(sym->s_extern.e_module)); PRINT_SYMBOL_DECLARATION(sym); })
609
609
DEF_WARNING(W_ASM_MULTIPLE_WRITES_TO_FINAL, (WG_READONLY), WSTATE_DISABLED, { struct symbol const *sym = ARG(struct symbol const *); WARNF("Multiple writes to final variable `%s' generate additional checks", SYMBOL_NAME(sym)); PRINT_SYMBOL_DECLARATION(sym); })
610
610
DEF_WARNING(W_ASM_UNBIND_FINAL_SYMBOL, (WG_READONLY), WSTATE_WARN, { struct symbol const *sym = ARG(struct symbol const *); WARNF("Cannot delete final variable `%s'", SYMBOL_NAME(sym)); PRINT_SYMBOL_DECLARATION(sym); })
611
611
DEF_WARNING(W_ASM_UNSUPPORTED_FINAL_SYMBOL_TYPE, (WG_READONLY), WSTATE_ERROR, { struct symbol const *sym = ARG(struct symbol const *); WARNF("Multiple writes to final symbol `%s' of type `%s' cannot be handled", SYMBOL_NAME(sym), SYMBOL_TYPE_NAME(sym->s_type)); PRINT_SYMBOL_DECLARATION(sym); })
0 commit comments