参照元 †説明 †
引数 †
返り値 †
参考 †実装 †/* Return the tree node representing the function called by call statement GS. */ static inline tree gimple_call_fn (const gcall *gs) { return gs->op[1]; } static inline tree gimple_call_fn (const gimple *gs) { const gcall *gc = GIMPLE_CHECK2<const gcall *> (gs); return gimple_call_fn (gc); }
コメント † |