weirflow 0.1.0

GPU-first dataflow analysis primitives for Vyre and Santh compiler pipelines.
Documentation
1
struct LL { int v; struct LL* next; }; void ll_insert(struct LL** head, int v){ struct LL* n=0; n->v=v; n->next=*head; *head=n; }