From 85ba37b97df8edd18b757bc475b12b66f4b117ed Mon Sep 17 00:00:00 2001 From: Ian Romanick Date: Wed, 21 Apr 2010 14:33:34 -0700 Subject: [PATCH] Always return a value from ast_type_specifier::hir --- ast_to_hir.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ast_to_hir.cpp b/ast_to_hir.cpp index 9b39d1f..704f274 100644 --- a/ast_to_hir.cpp +++ b/ast_to_hir.cpp @@ -2269,6 +2269,8 @@ ast_type_specifier::hir(exec_list *instructions, { if (this->structure != NULL) return this->structure->hir(instructions, state); + + return NULL; } -- 2.7.4