diff options
| author | Sterling Augustine <saugustine@google.com> | 2019-01-28 18:56:44 +0000 |
|---|---|---|
| committer | Sterling Augustine <saugustine@google.com> | 2019-01-28 18:56:44 +0000 |
| commit | 31e2acc3b523565e30aa01ea2c4ab0cc575a5e64 (patch) | |
| tree | ab0a047919cf007ce7f463667aab2f97d4b1ed7b | |
| parent | 9490fcc1919e7e24bd411b1e72802c171881be55 (diff) | |
| download | bcm5719-llvm-31e2acc3b523565e30aa01ea2c4ab0cc575a5e64.tar.gz bcm5719-llvm-31e2acc3b523565e30aa01ea2c4ab0cc575a5e64.zip | |
Correct help text for --unwindlib options.
llvm-svn: 352405
| -rw-r--r-- | clang/include/clang/Driver/Options.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/include/clang/Driver/Options.td b/clang/include/clang/Driver/Options.td index 1fefb9a9d87..68c8f1683c0 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=">, |

