Rename 'AddCary' to 'AddCarry'

This commit is contained in:
offtkp 2025-07-07 13:26:37 +03:00
parent 70eef0de90
commit be166d0c37
6 changed files with 8 additions and 8 deletions

View file

@ -60,7 +60,7 @@ Id EmitIAdd64(EmitContext& ctx, Id a, Id b) {
return ctx.OpIAdd(ctx.U64, a, b);
}
Id EmitIAddCary32(EmitContext& ctx, Id a, Id b) {
Id EmitIAddCarry32(EmitContext& ctx, Id a, Id b) {
return ctx.OpIAddCarry(ctx.full_result_u32x2, a, b);
}