summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--orc/orcfunctions.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/orc/orcfunctions.c b/orc/orcfunctions.c
index 2933929..dbe0b7d 100644
--- a/orc/orcfunctions.c
+++ b/orc/orcfunctions.c
@@ -167,7 +167,7 @@ void
orc_memcpy (void * ORC_RESTRICT d1, const void * ORC_RESTRICT s1, int n)
{
OrcExecutor _ex, *ex = &_ex;
- static int p_inited = 0;
+ static volatile int p_inited = 0;
static OrcCode *c = 0;
void (*func) (OrcExecutor *);
@@ -255,7 +255,7 @@ void
orc_memset (void * ORC_RESTRICT d1, int p1, int n)
{
OrcExecutor _ex, *ex = &_ex;
- static int p_inited = 0;
+ static volatile int p_inited = 0;
static OrcCode *c = 0;
void (*func) (OrcExecutor *);