]> granicus.if.org Git - clang/commitdiff
Fix missing space (NFC)
authorRong Xu <xur@google.com>
Mon, 8 Feb 2016 18:12:41 +0000 (18:12 +0000)
committerRong Xu <xur@google.com>
Mon, 8 Feb 2016 18:12:41 +0000 (18:12 +0000)
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

include/clang/Basic/DiagnosticDriverKinds.td
include/clang/Driver/CC1Options.td

index a89ad20956e80ab45690b00149c3903bf6f5f9f3..4b232006660f71b90d543cd9a54a1522a96921ca 100644 (file)
@@ -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'">;
index 0a6b7f0eeb6c8898bccd565a3eccbf9d327c731e..c1c4035016c8b4fc4a180d18c5a0379177a06be2 100644 (file)
@@ -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 "
              "<file> (overridden by LLVM_PROFILE_FILE env var)">;