rtasm: remove debug

This commit is contained in:
Keith Whitwell 2008-05-21 20:50:36 +01:00
parent 5b1bd30f22
commit 6f407b0724

View file

@ -990,14 +990,12 @@ static void note_x87_pop( struct x86_function *p )
{
p->x87_stack--;
assert(p->x87_stack >= 0);
debug_printf("\nstack: %d\n", p->x87_stack);
}
static void note_x87_push( struct x86_function *p )
{
p->x87_stack++;
assert(p->x87_stack <= 7);
debug_printf("\nstack: %d\n", p->x87_stack);
}
void x87_assert_stack_empty( struct x86_function *p )