weirflow 0.1.0

GPU-first dataflow analysis primitives for Vyre and Santh compiler pipelines.
Documentation
1
struct RustPoint { int x; int y; }; extern int rust_dist(struct RustPoint p); int use_dist(){ struct RustPoint p={3,4}; return rust_dist(p); }