Skip to content

Commit eb77f08

Browse files
committed
Comment
1 parent 083185c commit eb77f08

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Zend/zend_compile.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ typedef struct _zend_oparray_context {
249249
/* or IS_CONSTANT_VISITED_MARK | | | */
250250
#define ZEND_CLASS_CONST_IS_CASE (1 << 6) /* | | | X */
251251
/* | | | */
252-
/* Class Flags (unused: 30,31) | | | */
252+
/* Class Flags (unused: 30-63) | | | */
253253
/* =========== | | | */
254254
/* | | | */
255255
/* Special class types | | | */
@@ -315,7 +315,7 @@ typedef struct _zend_oparray_context {
315315
/* Class cannot be serialized or unserialized | | | */
316316
#define ZEND_ACC_NOT_SERIALIZABLE (1 << 29) /* X | | | */
317317
/* | | | */
318-
/* Function Flags (unused: 29-30) | | | */
318+
/* Function Flags (unused: 29-30,32-63) | | | */
319319
/* ============== | | | */
320320
/* | | | */
321321
/* deprecation flag | | | */

ext/reflection/php_reflection.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4533,7 +4533,7 @@ ZEND_METHOD(ReflectionClass, getMethods)
45334533
zend_long filter;
45344534
bool filter_is_null = 1;
45354535

4536-
// FIXME: sizeof(zend_long) < sizeof(zend_fn_flags) on some platforms...
4536+
// FIXME: sizeof(zend_long) < sizeof(zend_fn_flags) on 32-bit platforms
45374537
if (zend_parse_parameters(ZEND_NUM_ARGS(), "|l!", &filter, &filter_is_null) == FAILURE) {
45384538
RETURN_THROWS();
45394539
}
@@ -4712,7 +4712,7 @@ ZEND_METHOD(ReflectionClass, getProperties)
47124712
zend_long filter;
47134713
bool filter_is_null = 1;
47144714

4715-
// FIXME: sizeof(zend_long) < sizeof(zend_prop_flags) on some platforms...
4715+
// FIXME: sizeof(zend_long) < sizeof(zend_prop_flags) on 32-bit platforms
47164716
if (zend_parse_parameters(ZEND_NUM_ARGS(), "|l!", &filter, &filter_is_null) == FAILURE) {
47174717
RETURN_THROWS();
47184718
}

0 commit comments

Comments
 (0)