Semantics\NativeIntegerTests.cs (5)
15624static string nint_shr(int count) => shift(count, "System.IntPtr", "shr");
15625static string nint_shr_un(int count) => shift(count, "System.IntPtr", "shr.un");
15626static string nint_shl(int count) => shift(count, "System.IntPtr", "shl");
15627static string nuint_shr_un(int count) => shift(count, "System.UIntPtr", "shr.un");
15628static string nuint_shl(int count) => shift(count, "System.UIntPtr", "shl");