aboutsummaryrefslogtreecommitdiff
path: root/gcc/sym-exec/condition.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/sym-exec/condition.cc')
-rw-r--r--gcc/sym-exec/condition.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/gcc/sym-exec/condition.cc b/gcc/sym-exec/condition.cc
index 39d9d9eddf3..5b558d1e315 100644
--- a/gcc/sym-exec/condition.cc
+++ b/gcc/sym-exec/condition.cc
@@ -2,24 +2,24 @@
bit_condition::bit_condition (value_bit *left, value_bit *right, tree_code code)
{
- this->left = left;
- this->right = right;
- this->code = code;
- type = BIT_CONDITION;
+ this->m_left = left;
+ this->m_right = right;
+ this->m_code = code;
+ m_type = BIT_CONDITION;
}
bit_condition::bit_condition (const bit_condition &expr)
{
bit_expression::copy (&expr);
- code = expr.get_code ();
+ m_code = expr.get_code ();
}
tree_code
bit_condition::get_code () const
{
- return code;
+ return m_code;
}
@@ -33,7 +33,7 @@ bit_condition::copy () const
void
bit_condition::print_expr_sign ()
{
- switch (code)
+ switch (m_code)
{
case GT_EXPR:
fprintf (dump_file, " > ");