This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] Propagate gdb_disassembly_flags to btrace_print_lines


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=3dea1ef72c646d808e5b287e98253f3b8670c450

commit 3dea1ef72c646d808e5b287e98253f3b8670c450
Author: Simon Marchi <simon.marchi@polymtl.ca>
Date:   Sun Mar 4 20:02:35 2018 -0500

    Propagate gdb_disassembly_flags to btrace_print_lines
    
    This function can take the flags as the gdb_disassembly_flags type
    instead of int.
    
    gdb/ChangeLog:
    
    	* record-btrace.c (btrace_print_lines): Change type of flags to
    	gdb_disassembly_flags.

Diff:
---
 gdb/ChangeLog       | 5 +++++
 gdb/record-btrace.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 1190e0f..4a44af4 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2018-03-04  Simon Marchi  <simon.marchi@polymtl.ca>
+
+	* record-btrace.c (btrace_print_lines): Change type of flags to
+	gdb_disassembly_flags.
+
 2018-03-04  John Baldwin  <jhb@FreeBSD.org>
 
 	* fbsd-nat.c: Include "inf-ptrace.h".
diff --git a/gdb/record-btrace.c b/gdb/record-btrace.c
index d9a1dc5..48eda54 100644
--- a/gdb/record-btrace.c
+++ b/gdb/record-btrace.c
@@ -601,7 +601,7 @@ btrace_find_line_range (CORE_ADDR pc)
 
 static void
 btrace_print_lines (struct btrace_line_range lines, struct ui_out *uiout,
-		    struct cleanup **ui_item_chain, int flags)
+		    struct cleanup **ui_item_chain, gdb_disassembly_flags flags)
 {
   print_source_lines_flags psl_flags;
   int line;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]