aboutsummaryrefslogtreecommitdiff
path: root/ast.c
diff options
context:
space:
mode:
Diffstat (limited to 'ast.c')
-rw-r--r--ast.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ast.c b/ast.c
index 239cab6..e73fdb8 100644
--- a/ast.c
+++ b/ast.c
@@ -367,13 +367,13 @@ char *cnode_debug_type_repr(CNode *ast) {
assert(type);
}
if (aptr == abuff)
- sprintf(buffer, "%s(%d:%d)", type,
- ast->loc.row, ast->loc.col);
+ sprintf(buffer, "%s(%d:%d)->(var:%lx, type:%lx)", type,
+ ast->loc.row, ast->loc.col, (size_t)ast->ext.var, (size_t)ast->ext.type);
else
{
*aptr = '\0';
- sprintf(buffer, "%s:%s(%d:%d)", type, abuff,
- ast->loc.row, ast->loc.col);
+ sprintf(buffer, "%s:%s(%d:%d)->(var:%lx, type:%lx)", type, abuff,
+ ast->loc.row, ast->loc.col, (size_t)ast->ext.var, (size_t)ast->ext.type);
}
return buffer;
}