@@ -52,7 +52,7 @@ inline const transt &to_trans_expr(const exprt &expr)
52
52
return static_cast <const transt &>(expr);
53
53
}
54
54
55
- // / \copydoc to_trans (const exprt &)
55
+ // / \copydoc to_trans_expr (const exprt &)
56
56
inline transt &to_trans_expr (exprt &expr)
57
57
{
58
58
PRECONDITION (expr.id ()==ID_trans);
@@ -114,7 +114,8 @@ class symbol_exprt:public exprt
114
114
}
115
115
};
116
116
117
- // / Expression to hold a symbol (variable)
117
+ // / Expression to hold a symbol (variable) with extra ccessors to
118
+ // / ID_c_static_lifetime and ID_C_thread_local
118
119
class decorated_symbol_exprt :public symbol_exprt
119
120
{
120
121
public:
@@ -516,7 +517,7 @@ inline void validate_expr(const bswap_exprt &value)
516
517
}
517
518
518
519
// / \brief A generic base class for expressions that are predicates,
519
- // / i.e., boolean -typed.
520
+ // / i.e., Boolean -typed.
520
521
class predicate_exprt :public exprt
521
522
{
522
523
public:
@@ -546,7 +547,7 @@ class predicate_exprt:public exprt
546
547
};
547
548
548
549
// / \brief A generic base class for expressions that are predicates,
549
- // / i.e., boolean -typed, and that take exactly one argument.
550
+ // / i.e., Boolean -typed, and that take exactly one argument.
550
551
class unary_predicate_exprt :public unary_exprt
551
552
{
552
553
public:
@@ -571,6 +572,7 @@ class unary_predicate_exprt:public unary_exprt
571
572
};
572
573
573
574
// / \brief sign of an expression
575
+ // / Predicate is true if \a _op is negative, false otherwise.
574
576
class sign_exprt :public unary_predicate_exprt
575
577
{
576
578
public:
@@ -659,7 +661,7 @@ template<> inline bool can_cast_expr<binary_exprt>(const exprt &base)
659
661
660
662
661
663
// / \brief A generic base class for expressions that are predicates,
662
- // / i.e., boolean -typed, and that take exactly two arguments.
664
+ // / i.e., Boolean -typed, and that take exactly two arguments.
663
665
class binary_predicate_exprt :public binary_exprt
664
666
{
665
667
public:
@@ -1025,7 +1027,7 @@ inline void validate_expr(const div_exprt &value)
1025
1027
}
1026
1028
1027
1029
1028
- // / \brief binary modulo
1030
+ // / \brief modulo
1029
1031
class mod_exprt :public binary_exprt
1030
1032
{
1031
1033
public:
@@ -2038,7 +2040,7 @@ inline void validate_expr(const floatbv_typecast_exprt &value)
2038
2040
}
2039
2041
2040
2042
2041
- // / \brief boolean AND
2043
+ // / \brief Boolean AND
2042
2044
class and_exprt :public multi_ary_exprt
2043
2045
{
2044
2046
public:
@@ -2115,7 +2117,7 @@ template<> inline bool can_cast_expr<and_exprt>(const exprt &base)
2115
2117
// }
2116
2118
2117
2119
2118
- // / \brief boolean implication
2120
+ // / \brief Boolean implication
2119
2121
class implies_exprt :public binary_exprt
2120
2122
{
2121
2123
public:
@@ -2161,7 +2163,7 @@ inline void validate_expr(const implies_exprt &value)
2161
2163
}
2162
2164
2163
2165
2164
- // / \brief boolean OR
2166
+ // / \brief Boolean OR
2165
2167
class or_exprt :public multi_ary_exprt
2166
2168
{
2167
2169
public:
@@ -4085,7 +4087,7 @@ template<> inline bool can_cast_expr<constant_exprt>(const exprt &base)
4085
4087
}
4086
4088
4087
4089
4088
- // / \brief The boolean constant true
4090
+ // / \brief The Boolean constant true
4089
4091
class true_exprt :public constant_exprt
4090
4092
{
4091
4093
public:
@@ -4095,7 +4097,7 @@ class true_exprt:public constant_exprt
4095
4097
}
4096
4098
};
4097
4099
4098
- // / \brief The boolean constant false
4100
+ // / \brief The Boolean constant false
4099
4101
class false_exprt :public constant_exprt
4100
4102
{
4101
4103
public:
0 commit comments