summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCyrill Gorcunov <gorcunov@gmail.com>2013-07-16 01:33:09 +0400
committerCyrill Gorcunov <gorcunov@gmail.com>2013-07-16 01:33:09 +0400
commit836492fbcf074a609434e8cf6ce7580fc6b319bc (patch)
tree3f9ce6e43a3f7223f656fda608feaa4977f403bc
parent525ef263592fa7c6dc8edad66cce283b11a06ee7 (diff)
downloadnasm-836492fbcf074a609434e8cf6ce7580fc6b319bc.tar.gz
parse_line: Shrink code with memset helper
We know that P_none = 0 thus instead of using for() statement assign them all in one memset call. Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
-rw-r--r--parser.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/parser.c b/parser.c
index 99bbc251..a71dd33d 100644
--- a/parser.c
+++ b/parser.c
@@ -201,7 +201,6 @@ insn *parse_line(int pass, char *buffer, insn *result, ldfunc ldef)
int critical;
bool first;
bool recover;
- int j;
restart_parse:
first = true;
@@ -261,8 +260,8 @@ restart_parse:
return result;
}
- for (j = 0; j < MAXPREFIX; j++)
- result->prefixes[j] = P_none;
+ nasm_build_assert(P_none != 0);
+ memset(result->prefixes, P_none, sizeof(result->prefixes));
result->times = 1L;
while (i == TOKEN_PREFIX ||