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
Line Start is the of a 32-bit integer OpConstant denoting the source line number where the location begins.
Line End is the of a 32-bit integer OpConstant denoting the source line number where the location ends. This may be the same as Line Start if the location doesn’t cover multiple lines.
Column Start is the of a 32-bit integer OpConstant denoting the source column number where the location begins.
Column End is the of a 32-bit integer OpConstant denoting the source column number where the location ends. This must be greater than or equal to Column Start.
The validation for Column End should only apply if Line Start equals Line End. KhronosGroup/SPIRV-Tools#5846 implemented the rule as is, but that causes some multi-line uses to be considered invalid.
The text was updated successfully, but these errors were encountered:
See DebugLine.
The validation for
Column End
should only apply ifLine Start
equalsLine End
. KhronosGroup/SPIRV-Tools#5846 implemented the rule as is, but that causes some multi-line uses to be considered invalid.The text was updated successfully, but these errors were encountered: