Lines Matching defs:op2
54 tree op2 = build_int_cst (TREE_TYPE (op1), val);
57 return gimple_build_assign (lhs, code, op1, op2);
68 have the opcode CODE and operands OP1 and OP2. The type of the
76 build_assign (enum tree_code code, tree op1, tree op2, tree lhs)
80 return gimple_build_assign (lhs, code, op1, op2);
84 build_assign (enum tree_code code, gimple *op1, tree op2, tree lhs)
86 return build_assign (code, gimple_assign_lhs (op1), op2, lhs);
90 build_assign (enum tree_code code, tree op1, gimple *op2, tree lhs)
92 return build_assign (code, op1, gimple_assign_lhs (op2), lhs);
96 build_assign (enum tree_code code, gimple *op1, gimple *op2, tree lhs)
98 return build_assign (code, gimple_assign_lhs (op1), gimple_assign_lhs (op2),