mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2025-03-31 19:42:17 +02:00
(flush_cache): Implement x86-version as a no-op.
(Logical change 1.81)
This commit is contained in:
parent
79f981aaf7
commit
6c3716a92a
1 changed files with 11 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
#ifdef __ia64__
|
#if defined(__ia64__)
|
||||||
|
|
||||||
.global flush_cache
|
.global flush_cache
|
||||||
|
|
||||||
|
@ -30,4 +30,14 @@ flush_cache:
|
||||||
br.ret.sptk.many rp
|
br.ret.sptk.many rp
|
||||||
.endp flush_cache
|
.endp flush_cache
|
||||||
|
|
||||||
|
#elif defined(__i386__)
|
||||||
|
|
||||||
|
.globl flush_cache
|
||||||
|
flush_cache:
|
||||||
|
ret
|
||||||
|
|
||||||
|
#elif
|
||||||
|
|
||||||
|
# error Need flush_cache code for this architecture.
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue