diff options
| author | Ed Schouten <ed@FreeBSD.org> | 2012-01-03 19:38:56 +0000 |
|---|---|---|
| committer | Ed Schouten <ed@FreeBSD.org> | 2012-01-03 19:38:56 +0000 |
| commit | 864a7b98b54e1f984c248f3be83dfcc082a382ea (patch) | |
| tree | aa0caac956e3db37007baf3e0e66b6dfe8630fd6 /lib | |
| parent | 219fb0488994a289f1087f7b3da18789e068da12 (diff) | |
Notes
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/clear_cache.c | 2 | ||||
| -rw-r--r-- | lib/trampoline_setup.c | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/lib/clear_cache.c b/lib/clear_cache.c index fdd3316336691..b934fd4bdf694 100644 --- a/lib/clear_cache.c +++ b/lib/clear_cache.c @@ -8,6 +8,8 @@ * ===----------------------------------------------------------------------=== */ +#include "int_lib.h" + #if __APPLE__ #include <libkern/OSCacheControl.h> #endif diff --git a/lib/trampoline_setup.c b/lib/trampoline_setup.c index 1b139767d46ea..e0765b16b0b09 100644 --- a/lib/trampoline_setup.c +++ b/lib/trampoline_setup.c @@ -20,7 +20,7 @@ extern void __clear_cache(void* start, void* end); * and then jumps to the target nested function. */ -#if __ppc__ +#if __ppc__ && !defined(__powerpc64__) void __trampoline_setup(uint32_t* trampOnStack, int trampSizeAllocated, const void* realFunc, void* localsPtr) { @@ -44,4 +44,4 @@ void __trampoline_setup(uint32_t* trampOnStack, int trampSizeAllocated, /* clear instruction cache */ __clear_cache(trampOnStack, &trampOnStack[10]); } -#endif /* __ppc__ */ +#endif /* __ppc__ && !defined(__powerpc64__) */ |
