diff options
| author | Edmund Grimley Evans <Edmund.Grimley.Evans@gmail.com> | 2015-03-08 00:10:44 +0000 |
|---|---|---|
| committer | Edmund Grimley Evans <Edmund.Grimley.Evans@gmail.com> | 2015-03-08 00:10:44 +0000 |
| commit | d73b48840115f0adc97d6a9e6fe2aeb88fcbfbdd (patch) | |
| tree | ef2688c4319da846d2df2d1b9ae405c13152e863 /lib | |
| parent | 03303628c79c280d88214fea713a05d29a81f00a (diff) | |
| download | tinycc-d73b48840115f0adc97d6a9e6fe2aeb88fcbfbdd.tar.gz tinycc-d73b48840115f0adc97d6a9e6fe2aeb88fcbfbdd.tar.bz2 | |
arm64: Implement __clear_cache.
__clear_cache is defined in lib-arm64.c with a single call to
__arm64_clear_cache, which is the real built-in function and is
turned into inline assembler by gen_clear_cache in arm64-gen.c
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/lib-arm64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lib-arm64.c b/lib/lib-arm64.c index fd73506..bff1d91 100644 --- a/lib/lib-arm64.c +++ b/lib/lib-arm64.c @@ -14,7 +14,7 @@ void __clear_cache(char *beg, char *end) { -#warning __clear_cache not yet implemented + __arm64_clear_cache(beg, end); } typedef struct { |
