From 110d82fb75f19ac83e3a297e4783304481f66ce7 Mon Sep 17 00:00:00 2001 From: Yong He Date: Mon, 9 Sep 2024 08:18:26 -0700 Subject: Fix generic IInteger `mod` implementation. (#5037) --- source/slang/core.meta.slang | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source') diff --git a/source/slang/core.meta.slang b/source/slang/core.meta.slang index 4e8529666..03dda0fe5 100644 --- a/source/slang/core.meta.slang +++ b/source/slang/core.meta.slang @@ -568,7 +568,7 @@ ${{{{ __intrinsic_op($(kIROp_Sub)) This sub(This other); __intrinsic_op($(kIROp_Mul)) This mul(This other); __intrinsic_op($(kIROp_Div)) This div(This other); - __intrinsic_op($(kIROp_FRem)) This mod(This other); + __intrinsic_op($(kIROp_IRem)) This mod(This other); __intrinsic_op($(kIROp_Neg)) This neg(); __intrinsic_op($(kIROp_Lsh)) This shl(int other); __intrinsic_op($(kIROp_Rsh)) This shr(int other); -- cgit v1.2.3