[AArch64/AArch64-4.7][libgcc] Silence warnings in sync-cache.c
libgcc/ * config/aarch64/sync-cache.c (__aarch64_sync_cache_range): Silence warnings. From-SVN: r196380
This commit is contained in:
parent
d3e1a77949
commit
b7c3f1ca31
2 changed files with 9 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2013-03-01 James Greenhalgh <james.greenhalgh@arm.com>
|
||||
|
||||
* config/aarch64/sync-cache.c
|
||||
(__aarch64_sync_cache_range): Silence warnings.
|
||||
|
||||
2013-02-25 Catherine Moore <clm@codesourcery.com>
|
||||
|
||||
Revert:
|
||||
|
|
|
@ -18,6 +18,8 @@
|
|||
along with GCC; see the file COPYING3. If not see
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
void __aarch64_sync_cache_range (const void *, const void *);
|
||||
|
||||
void
|
||||
__aarch64_sync_cache_range (const void *base, const void *end)
|
||||
{
|
||||
|
@ -43,7 +45,7 @@ __aarch64_sync_cache_range (const void *base, const void *end)
|
|||
address = (const char*) ((__UINTPTR_TYPE__) base
|
||||
& ~ (__UINTPTR_TYPE__) (dcache_lsize - 1));
|
||||
|
||||
for (address; address < (const char *) end; address += dcache_lsize)
|
||||
for (; address < (const char *) end; address += dcache_lsize)
|
||||
asm volatile ("dc\tcvau, %0"
|
||||
:
|
||||
: "r" (address)
|
||||
|
@ -55,7 +57,7 @@ __aarch64_sync_cache_range (const void *base, const void *end)
|
|||
address = (const char*) ((__UINTPTR_TYPE__) base
|
||||
& ~ (__UINTPTR_TYPE__) (icache_lsize - 1));
|
||||
|
||||
for (address; address < (const char *) end; address += icache_lsize)
|
||||
for (; address < (const char *) end; address += icache_lsize)
|
||||
asm volatile ("ic\tivau, %0"
|
||||
:
|
||||
: "r" (address)
|
||||
|
|
Loading…
Add table
Reference in a new issue