diff options
author | Hans Wennborg <hans@hanshq.net> | 2015-08-12 19:35:05 +0000 |
---|---|---|
committer | Hans Wennborg <hans@hanshq.net> | 2015-08-12 19:35:05 +0000 |
commit | 259b71a4d25727fc8b2343a8c97e3b0fd813a59f (patch) | |
tree | 3f7bd4c312d774f8237b161aee2442bf7031b2bb | |
parent | 0d08062b7bafb5368cffefbb606b314e67fe87e8 (diff) | |
download | bcm5719-llvm-259b71a4d25727fc8b2343a8c97e3b0fd813a59f.tar.gz bcm5719-llvm-259b71a4d25727fc8b2343a8c97e3b0fd813a59f.zip |
Options.td: Drop trailing space in -fsanitize= help text
llvm-svn: 244795
-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 bae61c55bed..271bf6e4388 100644 --- a/clang/include/clang/Driver/Options.td +++ b/clang/include/clang/Driver/Options.td @@ -554,7 +554,7 @@ def fno_signaling_math : Flag<["-"], "fno-signaling-math">, Group<f_Group>; def fsanitize_EQ : CommaJoined<["-"], "fsanitize=">, Group<f_clang_Group>, Flags<[CC1Option, CoreOption]>, MetaVarName<"<check>">, HelpText<"Turn on runtime checks for various forms of undefined " - "or suspicious behavior. See user manual for available checks ">; + "or suspicious behavior. See user manual for available checks">; def fno_sanitize_EQ : CommaJoined<["-"], "fno-sanitize=">, Group<f_clang_Group>, Flags<[CoreOption]>; def fsanitize_blacklist : Joined<["-"], "fsanitize-blacklist=">, |