mirror of
https://github.com/LuaJIT/LuaJIT.git
synced 2025-02-08 23:44:08 +00:00
Fix CPP oops
This commit is contained in:
parent
ac7d3c4ec3
commit
441485274c
@ -529,8 +529,9 @@ typedef uint32_t TRef;
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
typedef union IRIns {
|
typedef union IRIns {
|
||||||
|
#if LJ_GC64
|
||||||
|
#error not yet implemented
|
||||||
struct {
|
struct {
|
||||||
#ifdef LJ_GC64
|
|
||||||
uint32_t padding; /* Ensures that gcr/ptr overlap with the proper fields */
|
uint32_t padding; /* Ensures that gcr/ptr overlap with the proper fields */
|
||||||
#endif
|
#endif
|
||||||
struct {
|
struct {
|
||||||
@ -553,7 +554,9 @@ typedef union IRIns {
|
|||||||
)
|
)
|
||||||
};
|
};
|
||||||
int32_t i; /* 32 bit signed integer literal (overlaps op12). */
|
int32_t i; /* 32 bit signed integer literal (overlaps op12). */
|
||||||
|
#if LJ_GC64
|
||||||
};
|
};
|
||||||
|
#endif
|
||||||
GCRef gcr; /* GCobj constant (overlaps op12). */
|
GCRef gcr; /* GCobj constant (overlaps op12). */
|
||||||
MRef ptr; /* Pointer constant (overlaps op12). */
|
MRef ptr; /* Pointer constant (overlaps op12). */
|
||||||
} IRIns;
|
} IRIns;
|
||||||
|
Loading…
Reference in New Issue
Block a user