inline
gimple_match_op::gimple_match_op ()
- : cond (gimple_match_cond::UNCOND), type (NULL_TREE), num_ops (0)
+ : cond (gimple_match_cond::UNCOND), type (NULL_TREE), reverse (false),
+ num_ops (0)
{
}
gimple_match_op::gimple_match_op (const gimple_match_cond &cond_in,
code_helper code_in, tree type_in,
unsigned int num_ops_in)
- : cond (cond_in), code (code_in), type (type_in), num_ops (num_ops_in)
+ : cond (cond_in), code (code_in), type (type_in), reverse (false),
+ num_ops (num_ops_in)
{
}
gimple_match_op::gimple_match_op (const gimple_match_cond &cond_in,
code_helper code_in, tree type_in,
tree op0)
- : cond (cond_in), code (code_in), type (type_in), num_ops (1)
+ : cond (cond_in), code (code_in), type (type_in), reverse (false),
+ num_ops (1)
{
ops[0] = op0;
}
gimple_match_op::gimple_match_op (const gimple_match_cond &cond_in,
code_helper code_in, tree type_in,
tree op0, tree op1)
- : cond (cond_in), code (code_in), type (type_in), num_ops (2)
+ : cond (cond_in), code (code_in), type (type_in), reverse (false),
+ num_ops (2)
{
ops[0] = op0;
ops[1] = op1;
gimple_match_op::gimple_match_op (const gimple_match_cond &cond_in,
code_helper code_in, tree type_in,
tree op0, tree op1, tree op2)
- : cond (cond_in), code (code_in), type (type_in), num_ops (3)
+ : cond (cond_in), code (code_in), type (type_in), reverse (false),
+ num_ops (3)
{
ops[0] = op0;
ops[1] = op1;
gimple_match_op::gimple_match_op (const gimple_match_cond &cond_in,
code_helper code_in, tree type_in,
tree op0, tree op1, tree op2, tree op3)
- : cond (cond_in), code (code_in), type (type_in), num_ops (4)
+ : cond (cond_in), code (code_in), type (type_in), reverse (false),
+ num_ops (4)
{
ops[0] = op0;
ops[1] = op1;
code_helper code_in, tree type_in,
tree op0, tree op1, tree op2, tree op3,
tree op4)
- : cond (cond_in), code (code_in), type (type_in), num_ops (5)
+ : cond (cond_in), code (code_in), type (type_in), reverse (false),
+ num_ops (5)
{
ops[0] = op0;
ops[1] = op1;