- removed a now superfluous function
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Thu, 31 Jul 2008 22:19:53 +0000 (22:19 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Thu, 31 Jul 2008 22:19:53 +0000 (22:19 +0000)
[r20871]

ir/ana/irscc.c

index b97fd0d..260b4a9 100644 (file)
@@ -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