Semantics\NativeIntegerTests.cs (5)
15629static string nint_shr(int count) => shift(count, "System.IntPtr", "shr");
15630static string nint_shr_un(int count) => shift(count, "System.IntPtr", "shr.un");
15631static string nint_shl(int count) => shift(count, "System.IntPtr", "shl");
15632static string nuint_shr_un(int count) => shift(count, "System.UIntPtr", "shr.un");
15633static string nuint_shl(int count) => shift(count, "System.UIntPtr", "shl");