using System;
class Program
{
static void Main()
{
Program p = new();
p.Test = false;
}
public bool Test;
}
Codegen:
call CORINFO_HELP_NEWSFAST
mov byte ptr [rax+0x08], 0
Expected:
call CORINFO_HELP_NEWSFAST
I looked at representing this in VN once, but it seemed hard with how we represent memory in VN.