weirflow 0.1.0

GPU-first dataflow analysis primitives for Vyre and Santh compiler pipelines.
Documentation
1
struct Node { int v; struct Node* next; }; int use_struct_ptr(){ struct Node n={1,0}; return n.v; }