aboutsummaryrefslogtreecommitdiff
path: root/gdb/record.h
diff options
context:
space:
mode:
authorMarkus Metzger <mmetzger@sourceware.org>2013-09-02 15:06:11 +0000
committerMarkus Metzger <mmetzger@sourceware.org>2013-09-02 15:06:11 +0000
commit1e038f67a9e8644c3d18033fac4ebb69f70f1606 (patch)
tree7a7d84a9952200e05613a5b5761b87f0056e2cfd /gdb/record.h
parentcee83bcb4927035bcdc60a9e3daba2e1ee8eb0f0 (diff)
downloadbinutils-1e038f67a9e8644c3d18033fac4ebb69f70f1606.zip
binutils-1e038f67a9e8644c3d18033fac4ebb69f70f1606.tar.gz
binutils-1e038f67a9e8644c3d18033fac4ebb69f70f1606.tar.bz2
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.
Diffstat (limited to 'gdb/record.h')
-rw-r--r--gdb/record.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/record.h b/gdb/record.h
index 86e6bc6..65d508f 100644
--- a/gdb/record.h
+++ b/gdb/record.h
@@ -36,10 +36,10 @@ extern struct cmd_list_element *info_record_cmdlist;
enum record_print_flag
{
/* Print the source file and line (if applicable). */
- record_print_src_line = (1 << 0),
+ RECORD_PRINT_SRC_LINE = (1 << 0),
/* Print the instruction number range (if applicable). */
- record_print_insn_range = (1 << 1),
+ RECORD_PRINT_INSN_RANGE = (1 << 1),
};
/* Wrapper for target_read_memory that prints a debug message if