From 31e2acc3b523565e30aa01ea2c4ab0cc575a5e64 Mon Sep 17 00:00:00 2001 From: Sterling Augustine Date: Mon, 28 Jan 2019 18:56:44 +0000 Subject: [PATCH] Correct help text for --unwindlib options. llvm-svn: 352405 --- clang/include/clang/Driver/Options.td | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/include/clang/Driver/Options.td b/clang/include/clang/Driver/Options.td index 1fefb9a..68c8f16 100644 --- a/clang/include/clang/Driver/Options.td +++ b/clang/include/clang/Driver/Options.td @@ -2569,7 +2569,7 @@ def std_EQ : Joined<["-", "--"], "std=">, Flags<[CC1Option]>, 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=">, -- 2.7.4