/* Return the LHS of call statement GS. */
static inline tree
gimple_call_lhs (const gcall *gs)
{
return gs->op[0];
}
static inline tree
gimple_call_lhs (const gimple *gs)
{
const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs);
return gimple_call_lhs (gc);
}