changing compiler code to preserve some debugging information

This commit is contained in:
2021-01-27 08:47:08 +00:00
parent 2266a9cfb8
commit 27c243b650
7 changed files with 55 additions and 34 deletions

View File

@ -1319,10 +1319,10 @@ static int begin_include (hcl_t* hcl)
hcl_ioinarg_t* arg;
const hcl_ooch_t* io_name;
io_name = add_io_name (hcl, TOKEN_NAME(hcl));
if (!io_name) return -1;
io_name = add_io_name(hcl, TOKEN_NAME(hcl));
if (HCL_UNLIKELY(!io_name)) return -1;
arg = (hcl_ioinarg_t*)hcl_callocmem (hcl, HCL_SIZEOF(*arg));
arg = (hcl_ioinarg_t*)hcl_callocmem(hcl, HCL_SIZEOF(*arg));
if (HCL_UNLIKELY(!arg)) goto oops;
arg->name = io_name;