*参照元 [#pfe595df] #backlinks *説明 [#dffa3e1b] -パス: [[gcc-8.3/gcc/expr.c]] -FIXME: これは何? --説明 **引数 [#q7ae26c9] -tree ref -- --[[gcc-8.3/gcc/tree]] **返り値 [#tc2309a3] -bool -- **参考 [#k661305c] *実装 [#t8626914] /* Returns true if the MEM_REF REF refers to an object that does not reside in memory and has non-BLKmode. */ static inline bool mem_ref_refers_to_non_mem_p (tree ref) { tree base = TREE_OPERAND (ref, 0); return addr_expr_of_non_mem_decl_p_1 (base, false); } - --[[gcc-8.3/gcc/TREE_OPERAND()]] --[[gcc-8.3/gcc/addr_expr_of_non_mem_decl_p_1()]] *コメント [#ub01c24d]