您的位置:首页 > 理论基础 > 数据结构算法

GCC主要数据结构之stmt_tree_s

2017-03-19 11:10 267 查看
 


/* Information about a statement tree.  */
struct GTY(()) stmt_tree_s {
  /* A stack of statement lists being collected.  */
  vec<tree, va_gc> *x_cur_stmt_list;
  /* In C++, Nonzero if we should treat statements as full
     expressions.  In particular, this variable is non-zero if at the
     end of a statement we should destroy any temporaries created
     during that statement.  Similarly, if, at the end of a block, we
     should destroy any local variables in this block.  Normally, this
     variable is nonzero, since those are the normal semantics of
     C++.
     This flag has no effect in C.  */
  int stmts_are_full_exprs_p;
};
typedef struct stmt_tree_s *stmt_tree;

 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: