Home
last modified time | relevance | path

Searched refs:typeof_ (Results 1 – 2 of 2) sorted by relevance

/external/bcc/src/cc/frontends/b/
Dtype_check.cc68 if (n->cond_->typeof_ != ExprNode::INTEGER) in visit_switch_stmt_node()
80 if (n->value_->typeof_ != ExprNode::INTEGER) in visit_case_stmt_node()
92 n->typeof_ = ExprNode::UNKNOWN; in visit_ident_expr_node()
95 n->typeof_ = ExprNode::INTEGER; in visit_ident_expr_node()
99 n->typeof_ = ExprNode::STRUCT; in visit_ident_expr_node()
130 n->typeof_ = ExprNode::INTEGER; in visit_ident_expr_node()
140 if (n->lhs_->typeof_ == ExprNode::STRUCT) { in visit_assign_expr_node()
142 if (n->rhs_->typeof_ != ExprNode::STRUCT) in visit_assign_expr_node()
145 if (n->lhs_->typeof_ != ExprNode::INTEGER) in visit_assign_expr_node()
150 if (n->rhs_->typeof_ != ExprNode::INTEGER) in visit_assign_expr_node()
[all …]
Dnode.h145 expr_type typeof_; variable
150 ExprNode() : typeof_(UNKNOWN), struct_type_(NULL), flags_(1 << READ) {} in ExprNode()
152 typeof_ = other.typeof_; in copy_type()