Skip to content

Instantly share code, notes, and snippets.

@bdw

bdw/expr-node.c Secret

Created August 19, 2019 08:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bdw/e5254580a7eb35bcc382b67c0df448b3 to your computer and use it in GitHub Desktop.
Save bdw/e5254580a7eb35bcc382b67c0df448b3 to your computer and use it in GitHub Desktop.
struct MVMExprIRNode {
MVMuint8 operator;
MVMuint8 size;
MVMuint8 type; // could be reaonasably combined into a singole byte
MVMint32 operands[2];
MVMint32 next;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment