mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-24 20:30:28 +02:00
fix C++ incompatibility in i386 back-end
2008-06-11 Paolo Bonzini <bonzini@gnu.org> * lightning/i386/core-i386.h: Fix C++ incompatibility.
This commit is contained in:
parent
1e9000649c
commit
4bc1260c51
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2008-06-11 Paolo Bonzini <bonzini@gnu.org>
|
||||
|
||||
* lightning/i386/core-i386.h: Fix C++ incompatibility.
|
||||
|
||||
2008-06-10 Laurent Michel <ldm@engr.uconn.edu>
|
||||
|
||||
* lightning/i386/core-i386.h: Fix jit_replace8 for
|
||||
|
|
|
@ -71,7 +71,7 @@ struct jit_local_state {
|
|||
#ifdef __APPLE__
|
||||
/* Stack must stay 16-byte aligned: */
|
||||
# define jit_prepare_i(ni) (((ni & 0x3) \
|
||||
? SUBLir(4 * ((((ni) + 3) & ~(0x3)) - (ni)), JIT_SP) \
|
||||
? (void)SUBLir(4 * ((((ni) + 3) & ~(0x3)) - (ni)), JIT_SP) \
|
||||
: (void)0), \
|
||||
_jitl.argssize += (((ni) + 3) & ~(0x3)))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue