You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I started working on an assembly backend and one thing I ran into is needing the value of initializer nodes that are the result of an expression. For example given the following (x is global):
intx=2+2;
I want to be able to get the initializer value of 4 without having to recompute it in the backend. As things currently work I think I'd have to recompute it, unless I'm missing something.
The text was updated successfully, but these errors were encountered:
I started working on an assembly backend and one thing I ran into is needing the value of initializer nodes that are the result of an expression. For example given the following (
x
is global):I want to be able to get the initializer value of
4
without having to recompute it in the backend. As things currently work I think I'd have to recompute it, unless I'm missing something.The text was updated successfully, but these errors were encountered: