Skip to content

Commit 0855872

Browse files
author
Owen Jones
committed
Address review comments #2
1 parent eaa7664 commit 0855872

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

src/util/irep.h

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -140,11 +140,10 @@ const irept &get_nil_irep();
140140
/// All expressions have a named subexpression with ID "type", which gives the
141141
/// type of the expression (slightly simplified from C/C++ as \ref
142142
/// unsignedbv_typet, \ref signedbv_typet, \ref floatbv_typet, etc.). All type
143-
/// conversions are explicit with an expression with `id() == ID_typecast`
144-
/// and a \ref typecast_exprt. One key descendant of \ref exprt is \ref
145-
/// symbol_exprt which creates \ref irept instances with ID “symbol”. These are
146-
/// used to represent variables; the name of which can be found using the
147-
/// `get_identifier` accessor function.
143+
/// conversions are explicit with a \ref typecast_exprt. One key descendant of
144+
/// \ref exprt is \ref symbol_exprt which creates \ref irept instances with ID
145+
/// “symbol”. These are used to represent variables; the name of which can be
146+
/// found using the `get_identifier` accessor function.
148147
///
149148
/// \ref codet inherits from \ref exprt and is defined in `std_code.h`. It
150149
/// represents executable code; statements in a C-like language rather than

0 commit comments

Comments
 (0)