File tree 2 files changed +4
-7
lines changed
2 files changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -236,7 +236,6 @@ std::string dump_function_body_in_html(
236
236
" <th>Name</th>\n "
237
237
" <th>Type</th>\n "
238
238
" </tr>\n " ;
239
- assert (ns.get_symbol_table ().has_symbol (raw_fn_name));
240
239
const symbolt &fn_symbol=ns.lookup (raw_fn_name);
241
240
const code_typet &fn_type=to_code_type (fn_symbol.type );
242
241
for (std::size_t i=0UL , n=fn_type.parameters ().size (); i!=n; ++i)
@@ -254,9 +253,8 @@ std::string dump_function_body_in_html(
254
253
ostr << " <p></p>\n " ;
255
254
256
255
ostr << " <table>\n "
257
- " <caption>Instructions of the funtion. The symbol 'N/A' stands "
258
- " for 'not available'. Column 'Loc' shows program locations. "
259
- " All numbers are decimal.</caption>\n "
256
+ " <caption>Instructions of the function. Column 'Loc' shows program "
257
+ " locations. All numbers are decimal.</caption>\n "
260
258
" <tr>\n "
261
259
" <th>Loc</th>\n "
262
260
" <th>Targets</th>\n "
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ Function: dump_function_body_in_html
53
53
54
54
Outputs: See purpose
55
55
56
- Purpose:
56
+ Purpose: This function dumps the specified function in HTML format.
57
57
58
58
59
59
\*******************************************************************/
@@ -262,8 +262,7 @@ void dump_access_path_in_html(
262
262
\*******************************************************************/
263
263
void dump_html_prefix (
264
264
std::ostream &ostr,
265
- const std::string &page_name = " "
266
- );
265
+ const std::string &page_name = " " );
267
266
268
267
/* ******************************************************************\
269
268
You can’t perform that action at this time.
0 commit comments