*参照元 [#x7d9712c] #backlinks *説明 [#g247b779] -パス: [[gcc-8.3/gcc/gimple.h]] -FIXME: これは何? --説明 **引数 [#w04abe23] - -const gcall *gs -- --[[gcc-8.3/gcc/gcall]] **返り値 [#ya01f782] - -tree -- --[[gcc-8.3/gcc/tree]] **参考 [#y6d400f3] *実装 [#zf616936] /* 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); } - --[[gcc-8.3/gcc/gimple]] --[[gcc-8.3/gcc/GIMPLE_CHECK2()]] *コメント [#q7241707]