> 2011-04-06 Martin Jambor
>
> * tree-inline.c (tree_function_versioning): Call cgraph_get_node
> instead of cgraph_node and assert it does not return NULL.
> * lto-streamer-in.c (lto_read_body): Likewise.
> * omp-low.c (new_omp_context): Likewise.
> (create_task_c
Hi,
the patch below changes a number of calls to cgraph_node to calls to
cgraph_get_node. These calls should never return NULL but because the
callers do not immediately dereference the pointer they get, a NULL
value would result in a segmentation fault at some later point,
obscuring the real cau