On 4/30/10 09:35 , Massimo Nazaria wrote: > fprintf (dump_file, "gimple_code: %d\n", > gimple_code (def_stmt)); // Here I get segmentation fault...
For default SSA names, the defining statement will be NULL. A default SSA name will be created when a symbol is never written before its first read (e.g., function parameters are typical). Diego. PS: It's usually better to post the output of 'svn diff' so we can see *all* your changes and possibly apply them into our own local trees for testing.