r352405 - Correct help text for --unwindlib options.

Sterling Augustine via cfe-commits cfe-commits at lists.llvm.org
Mon Jan 28 10:56:44 PST 2019


Author: saugustine
Date: Mon Jan 28 10:56:44 2019
New Revision: 352405

URL: http://llvm.org/viewvc/llvm-project?rev=352405&view=rev
Log:
Correct help text for --unwindlib options.

Modified:
    cfe/trunk/include/clang/Driver/Options.td

Modified: cfe/trunk/include/clang/Driver/Options.td
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Driver/Options.td?rev=352405&r1=352404&r2=352405&view=diff
==============================================================================
--- cfe/trunk/include/clang/Driver/Options.td (original)
+++ cfe/trunk/include/clang/Driver/Options.td Mon Jan 28 10:56:44 2019
@@ -2569,7 +2569,7 @@ def std_EQ : Joined<["-", "--"], "std=">
 def stdlib_EQ : Joined<["-", "--"], "stdlib=">, Flags<[CC1Option]>,
   HelpText<"C++ standard library to use">, Values<"libc++,libstdc++,platform">;
 def unwindlib_EQ : Joined<["-", "--"], "unwindlib=">, Flags<[CC1Option]>,
-  HelpText<"Unwind library to use">, Values<"libgcc_eh,compiler-rt-unwind,platform">;
+  HelpText<"Unwind library to use">, Values<"libgcc,compiler-rt,platform">;
 def sub__library : JoinedOrSeparate<["-"], "sub_library">;
 def sub__umbrella : JoinedOrSeparate<["-"], "sub_umbrella">;
 def system_header_prefix : Joined<["--"], "system-header-prefix=">,




More information about the cfe-commits mailing list