forked from OSchip/llvm-project
Fix missing space (NFC)
Fixed the inconsistently placed : (missing space) introduced in in r259811. llvm-svn: 260116
This commit is contained in:
parent
d77ed5a1a9
commit
cbeb8b2430
|
@ -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'">;
|
||||
|
|
|
@ -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)">;
|
||||
|
||||
|
|
Loading…
Reference in New Issue