*参照元 [#f694a090]
#backlinks

*説明 [#af3e7bec]
-パス: [[gcc-8.3/gcc/genmodes.c]]

-FIXME: これは何?
--説明


**引数 [#zc5c904a]
-const char *name
--
-unsigned int count
--
-unsigned int bytesize
--
-const char *file
--
-unsigned int line
--


**返り値 [#ea3c7f86]
-なし


**参考 [#v7b6ef9f]


*実装 [#hc8b5de4]
 static void ATTRIBUTE_UNUSED
 make_vector_bool_mode (const char *name, unsigned int count,
 		       unsigned int bytesize, const char *file,
 		       unsigned int line)
 {
   struct mode_data *m = find_mode ("BI");
   if (!m)
     {
       error ("%s:%d: no mode \"BI\"", file, line);
       return;
     }
 
-
--[[gcc-8.3/gcc/mode_data]]
--[[gcc-8.3/gcc/find_mode()]]
--[[gcc-8.3/gcc/error()]]

   struct mode_data *v = new_mode (MODE_VECTOR_BOOL, name, file, line);
   v->component = m;
   v->ncomponents = count;
   v->bytesize = bytesize;
-
--[[gcc-8.3/gcc/new_mode()]]

 }


*コメント [#c7cb35b7]


トップ   編集 差分 履歴 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS