Add OpFNegate

This commit is contained in:
ReinUsesLisp 2018-11-04 03:11:25 -03:00
parent 6742afd6dd
commit 27a0b4f17e
2 changed files with 12 additions and 0 deletions

View file

@ -286,6 +286,9 @@ class Module {
// Arithmetic
/// Floating-point subtract of Operand from zero.
Id OpFNegate(Id result_type, Id operand);
/// Unsigned-integer division of Operand 1 divided by Operand 2.
Id OpUDiv(Id result_type, Id operand_1, Id operand_2);