gcc-8.3/gcc/get_last_insn()
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
*参照元 [#n067d2d8]
#backlinks
*説明 [#ma9ced07]
-パス: [[gcc-8.3/gcc/emit-rtl.h]]
-FIXME: これは何?
--説明
**引数 [#y8141656]
-なし
**返り値 [#f2b34d74]
-rtx_insn *
--
--[[gcc-8.3/gcc/rtx_insn]]
**参考 [#x7fbf387]
-first の getter/setter
--[[gcc-8.3/gcc/get_insns()]]
--[[gcc-8.3/gcc/set_first_insn()]]
-last の getter/setter
--[[gcc-8.3/gcc/get_last_insn()]]
--[[gcc-8.3/gcc/set_last_insn()]]
*実装 [#a789616a]
/* Return the last insn emitted in current sequence or c...
static inline rtx_insn *
get_last_insn (void)
{
return get_current_sequence ()->last;
}
-
--[[gcc-8.3/gcc/get_current_sequence()]]
*コメント [#j91a4e5f]
終了行:
*参照元 [#n067d2d8]
#backlinks
*説明 [#ma9ced07]
-パス: [[gcc-8.3/gcc/emit-rtl.h]]
-FIXME: これは何?
--説明
**引数 [#y8141656]
-なし
**返り値 [#f2b34d74]
-rtx_insn *
--
--[[gcc-8.3/gcc/rtx_insn]]
**参考 [#x7fbf387]
-first の getter/setter
--[[gcc-8.3/gcc/get_insns()]]
--[[gcc-8.3/gcc/set_first_insn()]]
-last の getter/setter
--[[gcc-8.3/gcc/get_last_insn()]]
--[[gcc-8.3/gcc/set_last_insn()]]
*実装 [#a789616a]
/* Return the last insn emitted in current sequence or c...
static inline rtx_insn *
get_last_insn (void)
{
return get_current_sequence ()->last;
}
-
--[[gcc-8.3/gcc/get_current_sequence()]]
*コメント [#j91a4e5f]
ページ名: