summaryrefslogtreecommitdiffstats
path: root/libpixelflinger/codeflinger
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2014-09-08 19:09:41 -0700
committerDan Albert <danalbert@google.com>2014-09-11 17:17:32 +0000
commit949aa238981e6cedfc6d3f12fc9001a71162c6f3 (patch)
treefb3c65fa385ede94bf30e5390bf35b83f7b9b66f /libpixelflinger/codeflinger
parent2c805883408339823d3f3ca23aceb08a1783ebbd (diff)
downloadsystem_core-949aa238981e6cedfc6d3f12fc9001a71162c6f3.zip
system_core-949aa238981e6cedfc6d3f12fc9001a71162c6f3.tar.gz
system_core-949aa238981e6cedfc6d3f12fc9001a71162c6f3.tar.bz2
Fix some clang compilation issues.
Use expected inline behavior with clang. GCC defaults to -std=gnu90, giving C89 inline semantics with GNU extensions. Clang defaults to C99. Explicitly use gnu90. Mark an unused parameter as __unused. Fix some incorrect casts. Change-Id: I05b95585d5e3688eda71769b63b6b8a9237bcaf4
Diffstat (limited to 'libpixelflinger/codeflinger')
-rw-r--r--libpixelflinger/codeflinger/CodeCache.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libpixelflinger/codeflinger/CodeCache.cpp b/libpixelflinger/codeflinger/CodeCache.cpp
index cfd2b37..d770302 100644
--- a/libpixelflinger/codeflinger/CodeCache.cpp
+++ b/libpixelflinger/codeflinger/CodeCache.cpp
@@ -201,8 +201,8 @@ int CodeCache::cache( const AssemblyKeyBase& keyBase,
mCacheInUse += assemblySize;
mWhen++;
// synchronize caches...
- void* base = assembly->base();
- void* curr = (uint8_t*)base + assembly->size();
+ char* base = reinterpret_cast<char*>(assembly->base());
+ char* curr = reinterpret_cast<char*>(base + assembly->size());
__builtin___clear_cache(base, curr);
}