Commit 95864d35 authored by Guido van Rossum's avatar Guido van Rossum

Add dummy variable to avoid optimizer bug on OS/2 -- patch by Jeff Rush.

(AMK: you should probably copy this into your patch set for pcre.)
parent 885553e8
......@@ -256,6 +256,7 @@ static BOOL
set_start_bits(const uschar *code, uschar *start_bits)
{
register int c;
volatile int dummy;
do
{
......@@ -281,6 +282,7 @@ do
case OP_BRAZERO:
case OP_BRAMINZERO:
if (!set_start_bits(++tcode, start_bits)) return FALSE;
dummy = 1;
do tcode += (tcode[1] << 8) + tcode[2]; while (*tcode == OP_ALT);
tcode += 3;
try_next = TRUE;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment