removed useless comments

This commit is contained in:
Jean-Marc Valin 2009-07-04 22:46:38 -04:00
parent 66e7816833
commit ece2cfa2d2
8 changed files with 0 additions and 56 deletions

View file

@ -126,7 +126,6 @@ extern char *global_stack_top;
#else
/* FIXME: Only align up to a certain size (not for structs) */
#define ALIGN(stack, size) ((stack) += ((size) - (long)(stack)) & ((size) - 1))
#define PUSH(stack, size, type) (ALIGN((stack),sizeof(type)/sizeof(char)),(stack)+=(size)*(sizeof(type)/sizeof(char)),(type*)((stack)-(size)*(sizeof(type)/sizeof(char))))
#define RESTORE_STACK (global_stack = _saved_stack)