Commit e0a738e5 authored by Jean-Paul Saman's avatar Jean-Paul Saman

Don't use register keyword, leave it up to compiler to optimize this.

parent 3a409569
......@@ -212,9 +212,9 @@ void xvmc_context_writer_unlock( context_lock_t *c )
void clear_xx44_palette( xx44_palette_t *p )
{
register int i;
register uint32_t *cluts = p->cluts;
register int *ids = p->lookup_cache;
int i;
uint32_t *cluts = p->cluts;
int *ids = p->lookup_cache;
i= p->size;
while(i--)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment