gdb: remove trailing empty line in target-delegates.c
authorSimon Marchi <simon.marchi@polymtl.ca>
Thu, 27 Jul 2023 17:32:38 +0000 (13:32 -0400)
committerSimon Marchi <simon.marchi@polymtl.ca>
Thu, 27 Jul 2023 17:33:03 +0000 (13:33 -0400)
In a review [1], I pointed out that applying the patch, git would say:

    .git/rebase-apply/patch:147: new blank line at EOF.

However, since the empty line is in target-delegates.c (a generated
file), there's nothing the author can do about it.  To avoid this
comment coming up again in the future, change make-target-delegates.py
to avoid the trailing empty line.  Do this by making it output empty
lines before each entity, not after.

Since this needs removing a newline output in gdbcopyright, adjust
ada-unicode.py and gdbarch.py to avoid changes in the files they
generate.

[1] https://inbox.sourceware.org/gdb-patches/20230427210113.45380-1-jhb@FreeBSD.org/T/#m083598405bef19157f67c9d97846d3dd90dc7d1c

Change-Id: Ic4c648f06443b432168cb76603402c918aa6e5d2
Approved-By: Tom Tromey <tom@tromey.com>
gdb/ada-unicode.py
gdb/gdbarch.py
gdb/gdbcopyright.py
gdb/make-target-delegates.py
gdb/target-delegates.c

index 86685a258740434daa4904908e825398fa1756b8..fe5be561aa2af266ba081c4c855d7229b3107716 100755 (executable)
@@ -91,5 +91,6 @@ with open("ada-casefold.h", "w") as f:
         gdbcopyright.copyright("ada-unicode.py", "UTF-32 case-folding for GDB"),
         file=f,
     )
+    print("", file=f)
     for r in all_ranges:
         print(f"   {{{r[0]}, {r[1]}, {r[2]}, {r[3]}}},", file=f)
index 62592c1b13ee610fc3c477c2e1bb59cdaccf33e3..d776707032b1c8e5f9dbfef648985e66f945fe4d 100755 (executable)
@@ -52,6 +52,7 @@ with open("gdbarch-gen.h", "w") as f:
     print(copyright, file=f)
     print(file=f)
     print(file=f)
+    print(file=f)
     print("/* The following are pre-initialized by GDBARCH.  */", file=f)
 
     # Do Info components first.
@@ -121,6 +122,7 @@ with open("gdbarch-gen.h", "w") as f:
 with open("gdbarch.c", "w") as f:
     print(copyright, file=f)
     print(file=f)
+    print(file=f)
     print("/* Maintain the struct gdbarch object.  */", file=f)
     print(file=f)
     #
index 4e27356556b5ed8162f1eb3c1477043af818e278..ae4f6d6a118f5cb8869416246878e131e94142e1 100644 (file)
@@ -49,5 +49,4 @@ def copyright(tool: str, description: str):
 
 /* To regenerate this file, run:
    ./{tool}
-*/
-"""
+*/"""
index c8e5a94b5f9376a5cca2edb8158e001c9fe562ba..704d3f1cb67a09a8583409a5d2aee052f4ae5efc 100755 (executable)
@@ -199,6 +199,7 @@ def write_declaration(f: TextIO, name: str, return_type: str, argtypes: List[str
 
 # Write out a delegation function.
 def write_delegator(f: TextIO, name: str, return_type: str, argtypes: List[str]):
+    print("", file=f)
     names = write_function_header(
         f, False, "target_ops::" + name, return_type, argtypes
     )
@@ -208,7 +209,7 @@ def write_delegator(f: TextIO, name: str, return_type: str, argtypes: List[str])
     print("this->beneath ()->" + name + " (", file=f, end="")
     print(", ".join(names), file=f, end="")
     print(");", file=f)
-    print("}\n", file=f)
+    print("}", file=f)
 
 
 # Write out a default function.
@@ -220,6 +221,7 @@ def write_tdefault(
     return_type: str,
     argtypes: List[str],
 ):
+    print("", file=f)
     name = "dummy_target::" + name
     names = write_function_header(f, False, name, return_type, argtypes)
     if style == "FUNC":
@@ -238,7 +240,7 @@ def write_tdefault(
         pass
     else:
         raise RuntimeError("unrecognized style: " + style)
-    print("}\n", file=f)
+    print("}", file=f)
 
 
 def munge_type(typename: str):
@@ -263,6 +265,7 @@ def munge_type(typename: str):
 def write_debugmethod(
     f: TextIO, content: str, name: str, return_type: str, argtypes: List[str]
 ):
+    print("", file=f)
     debugname = "debug_target::" + name
     names = write_function_header(f, False, debugname, return_type, argtypes)
     if return_type != "void":
@@ -305,7 +308,7 @@ def write_debugmethod(
     if return_type != "void":
         print("  return result;", file=f)
 
-    print("}\n", file=f)
+    print("}", file=f)
 
 
 def print_class(
@@ -314,6 +317,7 @@ def print_class(
     delegators: List[str],
     entries: Dict[str, Entry],
 ):
+    print("", file=f)
     print("struct " + class_name + " : public target_ops", file=f)
     print("{", file=f)
     print("  const target_info &info () const override;", file=f)
@@ -326,7 +330,7 @@ def print_class(
         entry = entries[name]
         write_declaration(f, name, entry.return_type, entry.argtypes)
 
-    print("};\n", file=f)
+    print("};", file=f)
 
 
 delegators: List[str] = []
index 57b66ce87b1eebefc05f7f2a20dc45a98c62100d..e4e14380181b315c97cff12bea7e60697350dee1 100644 (file)
@@ -4535,4 +4535,3 @@ debug_target::store_memtags (CORE_ADDR arg0, size_t arg1, const gdb::byte_vector
   gdb_puts ("\n", gdb_stdlog);
   return result;
 }
-