From ce43a35307757c97f1bba2d89cb1729c580eba89 Mon Sep 17 00:00:00 2001 From: "Wolfgang (Blub) Bumiller" Date: Fri, 27 Apr 2012 13:32:52 +0200 Subject: [PATCH] ast_value_set_name to return bool --- ast.c | 3 ++- ast.h | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ast.c b/ast.c index f42a2fa..35e72eb 100644 --- a/ast.c +++ b/ast.c @@ -102,11 +102,12 @@ void ast_value_delete(ast_value* self) mem_d(self); } -void ast_value_set_name(ast_value *self, const char *name) +bool ast_value_set_name(ast_value *self, const char *name) { if (self->name) mem_d((void*)self->name); self->name = util_strdup(name); + return !!self->name; } ast_binary* ast_binary_new(lex_ctx_t ctx, int op, diff --git a/ast.h b/ast.h index ec46c9f..00922d6 100644 --- a/ast.h +++ b/ast.h @@ -111,7 +111,7 @@ struct ast_value_s ast_value* ast_value_new(lex_ctx_t ctx, const char *name, int qctype, bool keep); void ast_value_delete(ast_value*); -void ast_value_set_name(ast_value*, const char *name); +bool ast_value_set_name(ast_value*, const char *name); bool ast_value_codegen(ast_value*, ast_function*, ir_value**); -- 2.39.2