[llvm] ed1756c - [dsymutil] Support --out (NFC)
Jonas Devlieghere via llvm-commits
llvm-commits at lists.llvm.org
Tue Dec 3 17:08:39 PST 2019
Author: Jonas Devlieghere
Date: 2019-12-03T17:08:32-08:00
New Revision: ed1756cfbe7e1f32c9bdfb7a909b5707f102a9cb
URL: https://github.com/llvm/llvm-project/commit/ed1756cfbe7e1f32c9bdfb7a909b5707f102a9cb
DIFF: https://github.com/llvm/llvm-project/commit/ed1756cfbe7e1f32c9bdfb7a909b5707f102a9cb.diff
LOG: [dsymutil] Support --out (NFC)
Seems like this got lost during the libOption conversion.
Added:
Modified:
llvm/tools/dsymutil/Options.td
Removed:
################################################################################
diff --git a/llvm/tools/dsymutil/Options.td b/llvm/tools/dsymutil/Options.td
index 8eaa365af158..eb86c2f3ae1b 100644
--- a/llvm/tools/dsymutil/Options.td
+++ b/llvm/tools/dsymutil/Options.td
@@ -97,7 +97,7 @@ def output: Separate<["--", "-"], "o">,
MetaVarName<"<filename>">,
HelpText<"Specify the output file. Defaults to <input file>.dwarf">,
Group<grp_general>;
-def: Separate<["-"], "out">,
+def: Separate<["--", "-"], "out">,
Alias<output>,
HelpText<"Alias for --o">,
Group<grp_general>;
More information about the llvm-commits
mailing list