On 8/1/07 3:03 PM, Bob Rossi wrote:
> Is there a way to make it show the actual expressions in the code
> instead?
Other than changing the code in tree-cfg.c:tree_cfg2vcg(), not really.
Also, this dump is fairly static in that it only happens right after the
CFG is built for the first time (befor
Hi,
I'm trying to print the cfg so that I can visualize it. I have a simple
file,
$ cat foo.c
int
foo (int param)
{
param++;
if (param)
param++;
return param;
}
I run the command,
$ gcc -fdump-tree-vcg-blocks -c foo.c
and then I run,
xvcg *.vcg
which displays a pi