[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: cppx



I conducted another experiment and the cppx in the directory
/home/sesweb/yuzok/test

I have a very simple/stupid c file test1.c which ends up being converted to test1.c.gxl with 20 nodes and 31 edges (counted using BindingTest). There is evidence of node trimming as the actual node numbers go up to 151!



It does look to my untrained eye that the node explosion for /home/sesweb/yuzok/helloworld.c.gxl is related to including the entire stdio library.

I noticed that cppx trimmer the 1038 nodes in the original cparser
to a more manageable 229. Still seems like a lot for:
#include <stdio>
int main(){
printf ("Hello, World!\n");
return 0;
}

Yuzo