[clang] [llvm] [HLSL] Add -HV option translation to clang-dxc.exe (PR #83938)
Chris B via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 13 11:57:45 PDT 2024
================
@@ -8545,6 +8545,13 @@ def dxc_entrypoint : Option<["--", "/", "-"], "E", KIND_JOINED_OR_SEPARATE>,
Group<dxc_Group>,
Visibility<[DXCOption]>,
HelpText<"Entry point name">;
+def dxc_hlsl_version : Option<["/", "-"], "HV", KIND_JOINED_OR_SEPARATE>,
+ Group<dxc_Group>,
+ Visibility<[DXCOption]>,
+ HelpText<"HLSL Version">,
+ Values<"2016, 2017, 2018, 2021, 202x">,
+ NormalizedValuesScope<"LangStandard">,
+ NormalizedValues<["hlsl2016", "hlsl2017", "hlsl2018", "hlsl2021", "hlsl202x"]>;
----------------
llvm-beanz wrote:
nit: Do we need these? The `-help` spew should be driven by the `Values` entry right?
```suggestion
```
https://github.com/llvm/llvm-project/pull/83938
More information about the llvm-commits
mailing list