summaryrefslogtreecommitdiff
path: root/tools/d2c/conv.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/d2c/conv.c')
-rw-r--r--tools/d2c/conv.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/d2c/conv.c b/tools/d2c/conv.c
index 6676edc..e103c93 100644
--- a/tools/d2c/conv.c
+++ b/tools/d2c/conv.c
@@ -686,7 +686,11 @@ static bool ensure_conv_expr_content_fully_declared(conv_expr_t *expr, int fd, c
if (found && func != NULL)
{
- dprintf(_f, "\t\tuint%u_t val_%s;\n", _wide, name);
+ if (func->is_expr)
+ dprintf(_f, "\t\tuint%u_t val_%s;\n", _wide, name);
+ else
+ dprintf(_f, "\t\tGArchOperand *val_%s;\n", name);
+
printf("========= DECLARE for '%s'\n", name);
found = declare_conv_func(func, _f, _bts, _lst, _wide);
printf("========= END DECLARE for '%s'\n", name);