weirflow 0.1.0

GPU-first dataflow analysis primitives for Vyre and Santh compiler pipelines.
Documentation
1
struct Item { int v; }; int use_struct_array(){ struct Item arr[3]={{1},{2},{3}}; return arr[0].v+arr[1].v+arr[2].v; }