X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=src%2Ftypes%2Fimpl_val.h;h=1e6c119f06e61974c2b4d48c76fd1f89c9ccd38f;hb=f4bc73294ddd9f00ba656a8cf81593f83fbcadba;hp=18663203b04a51cdefd36263cf61f8ef8ced9d47;hpb=2f5af21b263403997e154658635d6b6e6eaab453;p=m6w6%2Fext-psi diff --git a/src/types/impl_val.h b/src/types/impl_val.h index 1866320..1e6c119 100644 --- a/src/types/impl_val.h +++ b/src/types/impl_val.h @@ -35,16 +35,12 @@ typedef struct zend_fcall { } zend_fcall; typedef union impl_val { - char cval; int8_t i8; uint8_t u8; - short sval; int16_t i16; uint16_t u16; - int ival; int32_t i32; uint32_t u32; - long lval; int64_t i64; uint64_t u64; float fval; @@ -59,6 +55,9 @@ typedef union impl_val { zend_fcall *cb; } zend; void *ptr; +#ifdef PHP_DEBUG + char _dbg[sizeof(void *)]; +#endif } impl_val; #endif