mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-22 15:47:37 +01: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
|
||||
|
||||
|
@ -30,4 +30,14 @@ flush_cache:
|
|||
br.ret.sptk.many rp
|
||||
.endp flush_cache
|
||||
|
||||
#elif defined(__i386__)
|
||||
|
||||
.globl flush_cache
|
||||
flush_cache:
|
||||
ret
|
||||
|
||||
#elif
|
||||
|
||||
# error Need flush_cache code for this architecture.
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue