From f265092072f2a9b84627609d14e7cf2cce7c5a74 Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Thu, 31 Jul 2008 22:19:53 +0000 Subject: [PATCH] - removed a now superfluous function [r20871] --- ir/ana/irscc.c | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/ir/ana/irscc.c b/ir/ana/irscc.c index b97fd0d67..260b4a928 100644 --- a/ir/ana/irscc.c +++ b/ir/ana/irscc.c @@ -209,24 +209,13 @@ static INLINE void init_stack(void) { tos = 0; } -static void finish_stack(void) -{ - DEL_ARR_F(stack); - stack = NULL; -} - -#if 0 /** * Frees the stack. */ -static INLINE void free_stack(void) { - if (stack != NULL) { - DEL_ARR_F(stack); - stack = NULL; - } - tos = 0; +static void finish_stack(void) { + DEL_ARR_F(stack); + stack = NULL; } -#endif /** * push a node onto the stack -- 2.20.1