Fix && and || parsing

This commit is contained in:
Ilmir Usmanov
2014-10-05 21:39:15 +04:00
parent 17ee2eca50
commit 62cc3cc604
3 changed files with 121 additions and 3 deletions
+1 -1
View File
@@ -245,7 +245,7 @@ do { \
#define STACK_DROP(NAME, I) \
do { \
JERRY_ASSERT ((I) >= 0); \
for (size_t i = 0; i < (size_t) (I); i++) { \
for (size_t i = 0, till = (size_t) (I); i < till; i++) { \
decrease_##NAME##_stack_size (); } } while (0)
#define STACK_CLEAN(NAME) \