Skip to content

Commit a44becc

Browse files
committed
Requests in the PR (structure of comments).
1 parent ef51720 commit a44becc

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

src/pointer-analysis/value_set.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -369,8 +369,8 @@ void value_sett::get_value_set(
369369
#endif
370370
}
371371

372-
/// \brief Builds a version of expr suitable for alias-comparison
373-
/// \param expr The expression to be converted to the alias-uniform structure
372+
/// Builds a version of expr suitable for alias-comparison
373+
/// \param expr: The expression to be converted to the alias-uniform structure
374374
/// \return expr without information which is irrelevant to alias-comparison
375375
static exprt get_uniform_expr(const exprt &expr)
376376
{
@@ -390,8 +390,8 @@ static exprt get_uniform_expr(const exprt &expr)
390390
return expr;
391391
}
392392

393-
/// \brief Reconstructs a type of a pointer to the object expr
394-
/// \param expr An object in a points-to set we make an alias type for
393+
/// Reconstructs a type of a pointer to the object expr
394+
/// \param expr: An object in a points-to set we make an alias type for
395395
/// \return A type of a pointer to the object expr
396396
static typet get_alias_type(const exprt &expr)
397397
{

src/pointer-analysis/value_set.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -221,10 +221,10 @@ class value_sett
221221
value_setst::valuest &dest,
222222
const namespacet &ns) const;
223223

224-
/// \brief Computes all pointers which MAY point to objects pointed to by expr
225-
/// \param expr Identifies a points
226-
/// \param dest Output container for pointers to objects pointed to by expr
227-
/// \param ns A reference to a symbol table
224+
/// Computes all pointers which MAY point to objects pointed to by expr
225+
/// \param expr: Identifies a points-to set for which to compute aliases
226+
/// \param dest: Output container for pointers to objects pointed to by expr
227+
/// \param ns: A reference to a symbol table
228228
void get_may_alias_set(
229229
const exprt &expr,
230230
value_setst::valuest &dest,

src/pointer-analysis/value_set_analysis.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -113,10 +113,10 @@ class value_set_analysis_baset:
113113
baset::ns);
114114
}
115115

116-
/// \brief Fills in dest with all pointers to any object pointed to be expr
117-
/// \param l A program location w.r.t which the operation will be performed
118-
/// \param expr Identifies a points-to set whose aliases we will compute
119-
/// \param dest Output container for aliases
116+
/// Fills in dest with all pointers to any object pointed to be expr
117+
/// \param l: A program location w.r.t which the operation will be performed
118+
/// \param expr: Identifies a points-to set whose aliases we will compute
119+
/// \param dest: Output container for aliases
120120
virtual void get_may_alias_values(
121121
locationt l,
122122
const exprt &expr,

0 commit comments

Comments
 (0)