Link Here
|
1 |
--- phalcon.zep.c.orig 2016-11-26 21:03:16 UTC |
2 |
+++ phalcon.zep.c |
3 |
@@ -2114,8 +2114,8 @@ static int ZEPHIR_FASTCALL zephir_memory |
4 |
#define ZEPHIR_MM_RESTORE() zephir_memory_restore_stack(NULL) |
5 |
|
6 |
#else |
7 |
-static void ZEPHIR_FASTCALL zephir_memory_grow_stack(); |
8 |
-static int ZEPHIR_FASTCALL zephir_memory_restore_stack(); |
9 |
+static void zephir_memory_grow_stack(); |
10 |
+static int zephir_memory_restore_stack(); |
11 |
|
12 |
#define ZEPHIR_MM_GROW() zephir_memory_grow_stack() |
13 |
#define ZEPHIR_MM_RESTORE() zephir_memory_restore_stack() |
14 |
@@ -4212,7 +4212,7 @@ static void ZEPHIR_FASTCALL zephir_memor |
15 |
|
16 |
#else |
17 |
|
18 |
-static void ZEPHIR_FASTCALL zephir_memory_grow_stack() |
19 |
+static void zephir_memory_grow_stack() |
20 |
{ |
21 |
zend_zephir_globals_def *g = ZEPHIR_VGLOBAL; |
22 |
if (g->start_memory == NULL) { |
23 |
@@ -4221,7 +4221,7 @@ static void ZEPHIR_FASTCALL zephir_memor |
24 |
zephir_memory_grow_stack_common(g); |
25 |
} |
26 |
|
27 |
-static int ZEPHIR_FASTCALL zephir_memory_restore_stack() |
28 |
+static int zephir_memory_restore_stack() |
29 |
{ |
30 |
zephir_memory_restore_stack_common(ZEPHIR_VGLOBAL); |
31 |
return SUCCESS; |