diff options
Diffstat (limited to '')
-rw-r--r-- | src/lj_ccall.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lj_ccall.h b/src/lj_ccall.h index 34e800cc..59f66481 100644 --- a/src/lj_ccall.h +++ b/src/lj_ccall.h | |||
@@ -79,8 +79,8 @@ typedef union FPRArg { | |||
79 | typedef intptr_t GPRArg; | 79 | typedef intptr_t GPRArg; |
80 | typedef union FPRArg { | 80 | typedef union FPRArg { |
81 | double d; | 81 | double d; |
82 | float f; | 82 | struct { LJ_ENDIAN_LOHI(float f; , float g;) }; |
83 | uint32_t u32; | 83 | struct { LJ_ENDIAN_LOHI(uint32_t lo; , uint32_t hi;) }; |
84 | } FPRArg; | 84 | } FPRArg; |
85 | 85 | ||
86 | #elif LJ_TARGET_PPC | 86 | #elif LJ_TARGET_PPC |