Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1004)

Unified Diff: gdb/go-typeprint.c

Issue 124383005: GDB 7.6.50 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@upstream
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gdb/go-lang.c ('k') | gdb/go-valprint.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gdb/go-typeprint.c
diff --git a/gdb/go-typeprint.c b/gdb/go-typeprint.c
index a76c3dc7ffb7ac4df2ec63102f29ce0ac755aa4e..9bc0a0ac98bf42feb518594ce8effc396917d9af 100644
--- a/gdb/go-typeprint.c
+++ b/gdb/go-typeprint.c
@@ -1,6 +1,6 @@
/* Support for printing Go types for GDB, the GNU debugger.
- Copyright (C) 2012 Free Software Foundation, Inc.
+ Copyright (C) 2012-2013 Free Software Foundation, Inc.
This file is part of GDB.
@@ -43,7 +43,8 @@
void
go_print_type (struct type *type, const char *varstring,
- struct ui_file *stream, int show, int level)
+ struct ui_file *stream, int show, int level,
+ const struct type_print_options *flags)
{
/* Borrowed from c-typeprint.c. */
if (show > 0)
@@ -58,5 +59,5 @@ go_print_type (struct type *type, const char *varstring,
}
/* Punt the rest to C for now. */
- c_print_type (type, varstring, stream, show, level);
+ c_print_type (type, varstring, stream, show, level, flags);
}
« no previous file with comments | « gdb/go-lang.c ('k') | gdb/go-valprint.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698