1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-06-02 09:22:36 +02:00

(flush_cache): Implement x86-version as a no-op.

(Logical change 1.81)
This commit is contained in:
hp.com!davidm 2003-04-21 23:14:14 +00:00
parent 79f981aaf7
commit 6c3716a92a

View file

@ -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