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 ) ...@@ -212,9 +212,9 @@ void xvmc_context_writer_unlock( context_lock_t *c )
void clear_xx44_palette( xx44_palette_t *p ) void clear_xx44_palette( xx44_palette_t *p )
{ {
register int i; int i;
register uint32_t *cluts = p->cluts; uint32_t *cluts = p->cluts;
register int *ids = p->lookup_cache; int *ids = p->lookup_cache;
i= p->size; i= p->size;
while(i--) 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