You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While writing tests for #85714, I noticed a bug in our code in InitPreprocessor, and missing test coverage. We currently set __HLSL_ENABLE_16_BIT to the active HLSL language version value, we should instead set it to 1.
Acceptance Criteria
Updated preprocessor initialization and test verifying that the value is correctly set to 1 or not set as appropriate
The text was updated successfully, but these errors were encountered:
The preprocessor define `__HLSL_ENABLE_16_BIT` should be set to 1 if
native 16-bit types are enabled and not set if they are not.
Previously we were setting the value to match the HLSL active language
version, and we had no test coverage verifing the value was set and not
set as expected.
Fixesllvm#89787
The preprocessor define `__HLSL_ENABLE_16_BIT` should be set to 1 if
native 16-bit types are enabled and not set if they are not.
Previously we were setting the value to match the HLSL active language
version, and we had no test coverage verifing the value was set and not
set as expected.
Fixes#89787
While writing tests for #85714, I noticed a bug in our code in InitPreprocessor, and missing test coverage. We currently set `__HLSL_ENABLE_16_BIT` to the active HLSL language version value, we should instead set it to `1`.
Acceptance Criteria
Updated preprocessor initialization and test verifying that the value is correctly set to 1 or not set as appropriate
While writing tests for #85714, I noticed a bug in our code in InitPreprocessor, and missing test coverage. We currently set
__HLSL_ENABLE_16_BIT
to the active HLSL language version value, we should instead set it to1
.Acceptance Criteria
The text was updated successfully, but these errors were encountered: