summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'libpixelflinger')
-rw-r--r--libpixelflinger/codeflinger/CodeCache.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/libpixelflinger/codeflinger/CodeCache.cpp b/libpixelflinger/codeflinger/CodeCache.cpp
index 8afe0a994..cfd2b3709 100644
--- a/libpixelflinger/codeflinger/CodeCache.cpp
+++ b/libpixelflinger/codeflinger/CodeCache.cpp
@@ -201,9 +201,9 @@ int CodeCache::cache( const AssemblyKeyBase& keyBase,
201 mCacheInUse += assemblySize; 201 mCacheInUse += assemblySize;
202 mWhen++; 202 mWhen++;
203 // synchronize caches... 203 // synchronize caches...
204 const long base = long(assembly->base()); 204 void* base = assembly->base();
205 const long curr = base + long(assembly->size()); 205 void* curr = (uint8_t*)base + assembly->size();
206 __builtin___clear_cache((void*)base, (void*)curr); 206 __builtin___clear_cache(base, curr);
207 } 207 }
208 208
209 pthread_mutex_unlock(&mLock); 209 pthread_mutex_unlock(&mLock);