-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Open
Labels
area-CodeGen-coreclrCLR JIT compiler in src/coreclr/src/jit and related components such as SuperPMICLR JIT compiler in src/coreclr/src/jit and related components such as SuperPMIuntriagedNew issue has not been triaged by the area ownerNew issue has not been triaged by the area owner
Description
static nint M1(int value) {
return value & 1;
}
static nint M2(int value) {
return (nint)((uint)value & 1);
}
// coreclr trunk-20250921+80fb00f580f5b2353ff3a8aa78c5b5fd3f275a34
C:M1(int):nint (FullOpts):
and edi, 1
movsxd rax, edi
ret
C:M2(int):nint (FullOpts):
and edi, 1
mov eax, edi
ret
PaulusParssinen
Metadata
Metadata
Assignees
Labels
area-CodeGen-coreclrCLR JIT compiler in src/coreclr/src/jit and related components such as SuperPMICLR JIT compiler in src/coreclr/src/jit and related components such as SuperPMIuntriagedNew issue has not been triaged by the area ownerNew issue has not been triaged by the area owner