gcc-8.3/gcc/set_first_insn()
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
*参照元 [#y68831dd]
#backlinks
*説明 [#efacacfa]
-パス: [[gcc-8.3/gcc/emit-rtl.h]]
-FIXME: これは何?
--説明
**引数 [#c1b473db]
-rtx_insn *insn
--
--[[gcc-8.3/gcc/rtx_insn]]
**返り値 [#t2377964]
-なし
**参考 [#w9139b4e]
-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()]]
*実装 [#dd15d234]
/* Specify a new insn as the first in the chain. */
static inline void
set_first_insn (rtx_insn *insn)
{
gcc_checking_assert (!insn || !PREV_INSN (insn));
get_current_sequence ()->first = insn;
}
-
--[[gcc-8.3/gcc/gcc_checking_assert()]]
--[[gcc-8.3/gcc/PREV_INSN()]]
--[[gcc-8.3/gcc/get_current_sequence()]]
*コメント [#d7745f98]
終了行:
*参照元 [#y68831dd]
#backlinks
*説明 [#efacacfa]
-パス: [[gcc-8.3/gcc/emit-rtl.h]]
-FIXME: これは何?
--説明
**引数 [#c1b473db]
-rtx_insn *insn
--
--[[gcc-8.3/gcc/rtx_insn]]
**返り値 [#t2377964]
-なし
**参考 [#w9139b4e]
-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()]]
*実装 [#dd15d234]
/* Specify a new insn as the first in the chain. */
static inline void
set_first_insn (rtx_insn *insn)
{
gcc_checking_assert (!insn || !PREV_INSN (insn));
get_current_sequence ()->first = insn;
}
-
--[[gcc-8.3/gcc/gcc_checking_assert()]]
--[[gcc-8.3/gcc/PREV_INSN()]]
--[[gcc-8.3/gcc/get_current_sequence()]]
*コメント [#d7745f98]
ページ名: