llvm-objdump: Fix --build-id documentation string
authorRoland McGrath <mcgrathr@google.com>
Wed, 4 Jan 2023 19:39:51 +0000 (11:39 -0800)
committerRoland McGrath <mcgrathr@google.com>
Wed, 4 Jan 2023 19:54:57 +0000 (11:54 -0800)
The argument is hex digits, so <dir> doesn't make a lot of sense.

Reviewed By: phosek

Differential Revision: https://reviews.llvm.org/D141009

llvm/tools/llvm-objdump/ObjdumpOpts.td

index 205bb94..de7f883 100644 (file)
@@ -40,7 +40,7 @@ def archive_headers : Flag<["--"], "archive-headers">,
 
 defm build_id :
   Eq<"build-id", "Build ID to look up. Once found, added as an input file">,
-  MetaVarName<"<dir>">;
+  MetaVarName<"<hex>">;
 
 def : Flag<["-"], "a">, Alias<archive_headers>,
   HelpText<"Alias for --archive-headers">;