From: Anatol Belski Date: Sun, 14 Sep 2014 09:26:17 +0000 (+0200) Subject: reduce struct size by 8 byte on 64 bit X-Git-Tag: PRE_NATIVE_TLS_MERGE~158^2~85^2~55 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a9c188fbc664b392eab003f310ad4487a9a556ea;p=php reduce struct size by 8 byte on 64 bit --- diff --git a/ext/spl/spl_iterators.h b/ext/spl/spl_iterators.h index 7435ce7f27..91d9895e98 100644 --- a/ext/spl/spl_iterators.h +++ b/ext/spl/spl_iterators.h @@ -154,12 +154,12 @@ typedef struct _spl_dual_it_object { } append; #if HAVE_PCRE || HAVE_BUNDLED_PCRE struct { - int use_flags; - zend_long flags; - regex_mode mode; - zend_long preg_flags; + zend_long flags; + zend_long preg_flags; pcre_cache_entry *pce; zend_string *regex; + regex_mode mode; + int use_flags; } regex; #endif _spl_cbfilter_it_intern *cbfilter;