rtasm: remove debug
authorKeith Whitwell <keith@tungstengraphics.com>
Wed, 21 May 2008 19:50:36 +0000 (20:50 +0100)
committerKeith Whitwell <keith@tungstengraphics.com>
Fri, 23 May 2008 08:16:57 +0000 (09:16 +0100)
src/gallium/auxiliary/rtasm/rtasm_x86sse.c

index a2e8af343b489e533c9be1249f1994b0dfb68ffa..d78676b8f36a6d8b206519ae91f1f31d9e749c8a 100644 (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 )