Add the "set style source" command
[deliverable/binutils-gdb.git] / gdb / make-target-delegates
index 28b49a4e8f250782e872889fd1c289da6f1d2bdc..329306d7f25bc4d322b6690d16269965840b8213 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/perl
 
-# Copyright (C) 2013-2018 Free Software Foundation, Inc.
+# Copyright (C) 2013-2019 Free Software Foundation, Inc.
 #
 # This file is part of GDB.
 #
@@ -390,10 +390,10 @@ sub print_class($) {
 
     print "struct " . $name . " : public target_ops\n";
     print "{\n";
-    print "  $name ();\n";
-    print "\n";
     print "  const target_info &info () const override;\n";
     print "\n";
+    print "  strata stratum () const override;\n";
+    print "\n";
 
     for $name (@delegators) {
        my $return_type = $return_types{$name};
This page took 0.037465 seconds and 4 git commands to generate.