record: upcase record_print_flag enumeration constants
* record.h (record_print_flag) <record_print_src_line, record_print_insn_range>: Rename into ... (record_print_flag) <record_print_src_line, record_print_insn_range>: ... this. Update all users.
This commit is contained in:
parent
cee83bcb49
commit
1e038f67a9
4 changed files with 13 additions and 6 deletions
|
@ -469,13 +469,13 @@ btrace_func_history (struct btrace_thread_info *btinfo, struct ui_out *uiout,
|
|||
ui_out_field_uint (uiout, "index", idx);
|
||||
ui_out_text (uiout, "\t");
|
||||
|
||||
if ((flags & record_print_insn_range) != 0)
|
||||
if ((flags & RECORD_PRINT_INSN_RANGE) != 0)
|
||||
{
|
||||
btrace_func_history_insn_range (uiout, bfun);
|
||||
ui_out_text (uiout, "\t");
|
||||
}
|
||||
|
||||
if ((flags & record_print_src_line) != 0)
|
||||
if ((flags & RECORD_PRINT_SRC_LINE) != 0)
|
||||
{
|
||||
btrace_func_history_src_line (uiout, bfun);
|
||||
ui_out_text (uiout, "\t");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue