From: Rong Xu Date: Mon, 8 Feb 2016 18:12:41 +0000 (+0000) Subject: Fix missing space (NFC) X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=018bad87566a041912a8d0f91c0d648c1339cdb7;p=clang Fix missing space (NFC) Fixed the inconsistently placed : (missing space) introduced in in r259811. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@260116 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Basic/DiagnosticDriverKinds.td b/include/clang/Basic/DiagnosticDriverKinds.td index a89ad20956..4b23200666 100644 --- a/include/clang/Basic/DiagnosticDriverKinds.td +++ b/include/clang/Basic/DiagnosticDriverKinds.td @@ -27,7 +27,7 @@ def err_drv_invalid_thread_model_for_target : Error< "invalid thread model '%0' in '%1' for this target">; def err_drv_invalid_linker_name : Error< "invalid linker name in argument '%0'">; -def err_drv_invalid_pgo_instrumentor: Error< +def err_drv_invalid_pgo_instrumentor : Error< "invalid PGO instrumentor in argument '%0'">; def err_drv_invalid_rtlib_name : Error< "invalid runtime library name in argument '%0'">; diff --git a/include/clang/Driver/CC1Options.td b/include/clang/Driver/CC1Options.td index 0a6b7f0eeb..c1c4035016 100644 --- a/include/clang/Driver/CC1Options.td +++ b/include/clang/Driver/CC1Options.td @@ -270,10 +270,10 @@ def fsanitize_coverage_trace_cmp def fsanitize_coverage_8bit_counters : Flag<["-"], "fsanitize-coverage-8bit-counters">, HelpText<"Enable frequency counters in sanitizer coverage">; -def fprofile_instrument_EQ: Joined<["-"], "fprofile-instrument=">, +def fprofile_instrument_EQ : Joined<["-"], "fprofile-instrument=">, HelpText<"Enable PGO instrumentation. The accepted values is clang or " "none">; -def fprofile_instrument_path_EQ: Joined<["-"], "fprofile-instrument-path=">, +def fprofile_instrument_path_EQ : Joined<["-"], "fprofile-instrument-path=">, HelpText<"Generate instrumented code to collect execution counts into " " (overridden by LLVM_PROFILE_FILE env var)">;