test commit

This commit is contained in:
julianb0 2019-05-15 19:31:23 +02:00
parent 06594207f9
commit f14c81024a
No known key found for this signature in database
GPG Key ID: DDF8325C95299A62
1 changed files with 1 additions and 2 deletions

View File

@ -37,8 +37,7 @@ void i_mul(ctx_t *ctx, acc_t *p1, acc_t *p2)
_except(ctx, E_IMP, "Memory access");
}
// Adapted from
// https://www.codeproject.com/Tips/618570/UInt-Multiplication-Squaring
// Adapted from www.codeproject.com/Tips/618570/UInt-Multiplication-Squaring
ulong u = p1->type >= A_IMM16 ? p1->val : ctx->r[p1->val].val;
ulong v = ctx->r[RAX].val;