rename error/warning -> tcc_(error/warning)
This commit is contained in:
4
il-gen.c
4
il-gen.c
@ -193,7 +193,7 @@ static void il_type_to_str(char *buf, int buf_size,
|
||||
pstrcat(buf, buf_size, tstr);
|
||||
break;
|
||||
case VT_STRUCT:
|
||||
error("structures not handled yet");
|
||||
tcc_error("structures not handled yet");
|
||||
break;
|
||||
case VT_FUNC:
|
||||
s = sym_find((unsigned)t >> VT_STRUCT_SHIFT);
|
||||
@ -387,7 +387,7 @@ void gfunc_start(GFuncContext *c, int func_call)
|
||||
void gfunc_param(GFuncContext *c)
|
||||
{
|
||||
if ((vtop->t & VT_BTYPE) == VT_STRUCT) {
|
||||
error("structures passed as value not handled yet");
|
||||
tcc_error("structures passed as value not handled yet");
|
||||
} else {
|
||||
/* simply push on stack */
|
||||
gv(RC_ST0);
|
||||
|
||||
Reference in New Issue
Block a user