[Pcre-svn] [746] code/trunk/src/pcre2_intmodedep.h: Adjust t…

Inizio della pagina
Delete this message
Autore: Subversion repository
Data:  
To: pcre-svn
Oggetto: [Pcre-svn] [746] code/trunk/src/pcre2_intmodedep.h: Adjust two match frame variables to save space in 8-bit mode.
Revision: 746
          http://www.exim.org/viewvc/pcre2?view=rev&revision=746
Author:   ph10
Date:     2017-04-14 13:02:40 +0100 (Fri, 14 Apr 2017)
Log Message:
-----------
Adjust two match frame variables to save space in 8-bit mode.


Modified Paths:
--------------
    code/trunk/src/pcre2_intmodedep.h


Modified: code/trunk/src/pcre2_intmodedep.h
===================================================================
--- code/trunk/src/pcre2_intmodedep.h    2017-04-14 11:42:02 UTC (rev 745)
+++ code/trunk/src/pcre2_intmodedep.h    2017-04-14 12:02:40 UTC (rev 746)
@@ -774,8 +774,8 @@
   uint32_t rdepth;           /* "Recursion" depth */
   uint32_t group_frame_type; /* Type information for group frames */
   uint32_t temp_32[4];       /* Used for short-term 32-bit or BOOL values */
-  uint16_t return_id;        /* Where to go on in internal "return" */
-  uint16_t op;               /* Processing opcode */
+  uint8_t return_id;         /* Where to go on in internal "return" */
+  uint8_t op;                /* Processing opcode */


 #if PCRE2_CODE_UNIT_WIDTH == 8
   PCRE2_UCHAR occu[6];       /* Used for other case code units */