summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/rtasm/rtasm_x86sse.c
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2008-05-21 20:50:36 +0100
committerKeith Whitwell <keith@tungstengraphics.com>2008-05-23 09:16:57 +0100
commit6f407b072453eb2bb7077a952257a099db4da025 (patch)
treed89c12922f940fb090fbdf3a43509e3f389cef4a /src/gallium/auxiliary/rtasm/rtasm_x86sse.c
parent5b1bd30f22ffa3955150ec008631d0f4754d340f (diff)
rtasm: remove debug
Diffstat (limited to 'src/gallium/auxiliary/rtasm/rtasm_x86sse.c')
-rw-r--r--src/gallium/auxiliary/rtasm/rtasm_x86sse.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/rtasm/rtasm_x86sse.c b/src/gallium/auxiliary/rtasm/rtasm_x86sse.c
index a2e8af343b..d78676b8f3 100644
--- a/src/gallium/auxiliary/rtasm/rtasm_x86sse.c
+++ b/src/gallium/auxiliary/rtasm/rtasm_x86sse.c
@@ -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 )