Semantics\NativeIntegerTests.cs (5)
15598static string nint_shr(int count) => shift(count, "System.IntPtr", "shr");
15599static string nint_shr_un(int count) => shift(count, "System.IntPtr", "shr.un");
15600static string nint_shl(int count) => shift(count, "System.IntPtr", "shl");
15601static string nuint_shr_un(int count) => shift(count, "System.UIntPtr", "shr.un");
15602static string nuint_shl(int count) => shift(count, "System.UIntPtr", "shl");