diff options
| author | Andrew Chambers <[email protected]> | 2021-10-13 20:03:43 +1300 |
|---|---|---|
| committer | Andrew Chambers <[email protected]> | 2021-10-13 20:03:43 +1300 |
| commit | 93b535597ad003629315793c58f3eeea0b907527 (patch) | |
| tree | 91ab02b4179435e436a848cb0e3442ab359371f1 /parse.c | |
| parent | 92c7930bf2f2cfeea51991524384bf6ce226bd7a (diff) | |
Simplify, intern instructions.
Diffstat (limited to 'parse.c')
| -rw-r--r-- | parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -128,7 +128,7 @@ AsmLine *parse(void) { if (ctx.v.kind == ASM_SYNTAX_ERROR) lfatal("syntax error\n"); l = zalloc(sizeof(AsmLine)); - l->v = ctx.v; + l->v = internparsev(&ctx.v); if (prevl) prevl->next = l; else |
