Closed hikari-no-yume closed 1 year ago
As I understand it, we can't support stuff like int *b = &a + 1; because uxnasm has no way to express this, but int *b = &a; seems doable maybe?
int *b = &a + 1;
int *b = &a;
Oh wait oops this is a dupe of https://github.com/lynn/chibicc/issues/3 >.<
As I understand it, we can't support stuff like
int *b = &a + 1;
because uxnasm has no way to express this, butint *b = &a;
seems doable maybe?