Remove non-existent value from binary-format VC option help text

Removed the "ocl" values in "binary-format" and "runtime" VC internal options help text. OCL format was removed in an earlier commit.
This commit is contained in:
Michał Krause
2025-07-08 13:52:35 +00:00
committed by igcbot
parent d8afb7673a
commit 8f730d8ea6

View File

@ -36,12 +36,12 @@ def : PlainJoined<"target-features=">, Alias<target_features>,
HelpText<"Alias for -target-features">;
def binary_format : PlainSeparate<"binary-format">,
HelpText<"Set in which format should be generated binary; values: 'cm', 'ocl' or 'ze'">;
HelpText<"Set in which format should be generated binary; values: 'cm' or 'ze'">;
def : PlainJoined<"binary-format=">, Alias<binary_format>,
HelpText<"Alias for -binary-format <value>">;
def : PlainSeparate<"runtime">, Alias<binary_format>,
HelpText<"Set runtime for which binary should be generated; values: 'ocl' or 'cm'">;
HelpText<"Set runtime for which binary should be generated; values: 'cm' or 'ze'">;
def : PlainJoined<"runtime=">, Alias<binary_format>,
HelpText<"Alias for -runtime <value>">;