gdbarch-components.py: change empty "params" tuples to empty lists
authorSimon Marchi <simon.marchi@polymtl.ca>
Tue, 21 Dec 2021 03:30:37 +0000 (22:30 -0500)
committerSimon Marchi <simon.marchi@polymtl.ca>
Wed, 22 Dec 2021 00:47:59 +0000 (19:47 -0500)
During review, it was suggested to change the "params" parameter from a
tuple to a list, for esthetic reasons.  The empty ones are still tuples
though, they should probably be changed to be empty lists, for
consistency.  It does not change anything in the script result.

Change-Id: If13c6c527aa167a5ee5b45740e5f1bda1e9517e4

gdb/gdbarch-components.py

index a5c3c38147fecaf25426fa79cc0ab175d33d381f..94a684cecc8043cad4b11abe5d4f6b03fcdf9528 100644 (file)
@@ -1688,7 +1688,7 @@ gdbarch_software_single_step routine, and true otherwise.
 """,
     type="bool",
     name="displaced_step_hw_singlestep",
-    params=(),
+    params=[],
     predefault="default_displaced_step_hw_singlestep",
     invalid=False,
 )
@@ -1890,7 +1890,7 @@ Return a type suitable to inspect extra signal information.
 """,
     type="struct type *",
     name="get_siginfo_type",
-    params=(),
+    params=[],
     predicate=True,
     invalid=True,
 )
@@ -2236,7 +2236,7 @@ True if inferiors share an address space (e.g., uClinux).
 """,
     type="int",
     name="has_shared_address_space",
-    params=(),
+    params=[],
     predefault="default_has_shared_address_space",
     invalid=False,
 )
@@ -2272,7 +2272,7 @@ Return the "auto" target charset.
 """,
     type="const char *",
     name="auto_charset",
-    params=(),
+    params=[],
     predefault="default_auto_charset",
     invalid=False,
 )
@@ -2283,7 +2283,7 @@ Return the "auto" target wide charset.
 """,
     type="const char *",
     name="auto_wide_charset",
-    params=(),
+    params=[],
     predefault="default_auto_wide_charset",
     invalid=False,
 )
@@ -2520,7 +2520,7 @@ they can override it.
 """,
     type="std::string",
     name="gcc_target_options",
-    params=(),
+    params=[],
     predefault="default_gcc_target_options",
     invalid=False,
 )
@@ -2535,7 +2535,7 @@ case.
 """,
     type="const char *",
     name="gnu_triplet_regexp",
-    params=(),
+    params=[],
     predefault="default_gnu_triplet_regexp",
     invalid=False,
 )
@@ -2548,7 +2548,7 @@ each address in memory.
 """,
     type="int",
     name="addressable_memory_unit_size",
-    params=(),
+    params=[],
     predefault="default_addressable_memory_unit_size",
     invalid=False,
 )