[llvm] [clang-tools-extra] [clang] [llvm-objcopy] Add --gap-fill and --pad-to options (PR #65815)

James Henderson via cfe-commits cfe-commits at lists.llvm.org
Tue Dec 12 00:58:41 PST 2023


================
@@ -234,11 +234,11 @@ defm update_section
 defm gap_fill
     : Eq<"gap-fill", "Fill the gaps between sections with <value> instead of zero. "
                      "<value> must be an unsigned 8-bit integer. "
-                     "This option is only supported for ELF inputs and binary outputs.">,
+                     "This option is only supported for the ELF input and binary output">,
       MetaVarName<"value">;
 
 defm pad_to
-    : Eq<"pad-to", "Pad the output to the load address <address>, using a value "
-                   "of zero or the value specified by :option:`--gap-fill`"
-                   "This option is only supported for ELF inputs and binary outputs.">,
+    : Eq<"pad-to", "Pad the output up to the load address <address>, using a value "
+                   "of zero or the value specified by the --gap-fill option. "
+                   "This option is only supported for the ELF input and binary output">,
----------------
jh7370 wrote:

Ditto: no "the" before "ELF".

https://github.com/llvm/llvm-project/pull/65815


More information about the cfe-commits mailing list